summaryrefslogtreecommitdiff
path: root/app/src/main/res/values/attrs.xml
blob: 2bf4d8ce1a8561e10a4e9516a7a07684c9330e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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"/>
    <attr name="singleLine" format="boolean"/>
    <attr name="tint" format="reference|color" />
    <declare-styleable name="IconSwitchEntry">
        <attr name="text"/>
        <attr name="subtitle" />
        <attr name="icon"/>
        <attr name="singleLine"/>
    </declare-styleable>

    <declare-styleable name="IconTextEntry">
        <attr name="text"/>
        <attr name="subtitle" />
        <attr name="icon"/>
        <attr name="singleLine"/>
    </declare-styleable>
    <declare-styleable name="LocationIndicator">
        <attr name="tint"/>
    </declare-styleable>
</resources>