blob: d3a88b81b88a1e9f26b6b1924d9e73d5f1176a80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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"/>
<attr name="subtitle" format="string|reference"/>
<declare-styleable name="IconSwitchEntry">
<attr name="text"/>
<attr name="subtitle" />
<attr name="icon"/>
</declare-styleable>
<declare-styleable name="IconTextEntry">
<attr name="text"/>
<attr name="subtitle" />
<attr name="icon"/>
</declare-styleable>
</resources>
|