17 lines
635 B
XML
17 lines
635 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<resources>
|
||
<!-- BatteryStyleView 自定义属性 -->
|
||
<declare-styleable name="BatteryStyleView">
|
||
<attr name="batteryPreviewColor" format="color"/>
|
||
<attr name="previewBatteryValue" format="integer"/>
|
||
<attr name="defaultSelectedStyle" format="integer">
|
||
<enum name="zebra_style" value="0"/>
|
||
<enum name="energy_style" value="1"/>
|
||
</attr>
|
||
</declare-styleable>
|
||
|
||
<!-- 字符串资源,可放到strings.xml -->
|
||
<string name="zebra_style">Zebra Style</string>
|
||
<string name="energy_style">Energy Style</string>
|
||
</resources>
|