Skip to content

Instantly share code, notes, and snippets.

@gokhanaliccii
Last active August 29, 2015 14:25
Show Gist options
  • Save gokhanaliccii/5bf6f044746ed5a0c1fd to your computer and use it in GitHub Desktop.
Save gokhanaliccii/5bf6f044746ed5a0c1fd to your computer and use it in GitHub Desktop.
attribute xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomFontTextView">
<attr name="font" format="enum">
<enum name="ALLER_BOLD" value="0" />
<enum name="ALLER_BOLD_ITALIC" value="1" />
<enum name="ALLER_ITALIC" value="2" />
<enum name="ALLER_LIGHT" value="3" />
<enum name="ALLER_NORMAL" value="4" />
<enum name="SEGOE_BOLD" value="5" />
<enum name="SEGOE_LIGHT" value="6" />
<enum name="SEGOE_NORMAL" value="7" />
<enum name="SEGOE_SEMI_BOLD" value="8" />
<enum name="MYRIAD_PRO_BOLD" value="9" />
<enum name="MYRIAD_PRO_regular" value="10" />
</attr>
<attr name="font_type" format="integer" />
</declare-styleable>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment