Last active
August 29, 2015 14:25
-
-
Save gokhanaliccii/5bf6f044746ed5a0c1fd to your computer and use it in GitHub Desktop.
attribute xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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