blob: 66a351ae0949aea74657eade01c99c9af9b59ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--TODO: check that it's not needed and throw it out!-->
<declare-styleable name="foo">
<attr name="textColorError" format="color" />
</declare-styleable>
<attr name="text" format="string|reference"/>
<attr name="icon" format="reference"/>
<declare-styleable name="IconSwitchEntry">
<attr name="text"/>
<attr name="icon"/>
</declare-styleable>
<declare-styleable name="IconTextEntry">
<attr name="text"/>
<attr name="icon"/>
</declare-styleable>
</resources>
|