mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
14 lines
478 B
XML
14 lines
478 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<resources>
|
||
|
<!-- Define the values for the attribute -->
|
||
|
<attr name="typeface" format="enum">
|
||
|
<enum name="ptsansNarrow" value="0"/>
|
||
|
<enum name="ptsansNarrowBold" value="1"/>
|
||
|
</attr>
|
||
|
|
||
|
<!-- Tell Android that the class "CustomButton" can be styled,
|
||
|
and which attributes it supports -->
|
||
|
<declare-styleable name="PTSansTextView">
|
||
|
<attr name="typeface"/>
|
||
|
</declare-styleable>
|
||
|
</resources>
|