How to Add custom font to xamarin android?
I add : Assets/fonts/Geogrotesque Medium Italic.otf create attrs.xml
<resources>
<declare-styleable name="TextView" >
<attr name="fontFamily" format="string"/>
</declare-styleable>
</resources>
create fonts.xml
<familyset>
<family>
<nameset>
<name>Geogrotesque</name>
</nameset>
<fileset>
<file>Geogrotesque Medium Italic.otf</file>
</fileset>
</family>
</familyset>
and try to call with in style
@android:style/Theme.Holo
@android:style/Widget.Holo.ActionBar.TabView
@android:style/Widget.Holo.ActionBar.TabText
@android:style/Widget.Holo.Light.TextView
<item name="fontFamily">Geogrotesque</item>
and does not work :/