mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-24 21:12:35 -04:00
19 lines
No EOL
642 B
XML
19 lines
No EOL
642 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>
|
|
|
|
<declare-styleable name="MinMaxNumberPicker">
|
|
<attr name="min" format="integer"/>
|
|
<attr name="max" format="integer"/>
|
|
</declare-styleable>
|
|
</resources> |