-
Notifications
You must be signed in to change notification settings - Fork 2
/
top_defaults_view_attrs.xml
27 lines (27 loc) · 1.21 KB
/
top_defaults_view_attrs.xml
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="TextButton">
<attr name="defaultTextColor" format="color"/>
<attr name="pressedTextColor" format="color"/>
<attr name="disabledTextColor" format="color"/>
<attr name="selectedTextColor" format="color"/>
<attr name="underline" format="boolean"/>
<attr name="textEffect" format="enum">
<enum name="defaultEffect" value="0"/>
<enum name="animateColor" value="1"/>
<enum name="animateSize" value="2"/>
<enum name="animateColorAndSize" value="3"/>
</attr>
<attr name="effectDuration" format="integer"/>
<attr name="defaultBackgroundColor" format="color"/>
<attr name="pressedBackgroundColor" format="color"/>
<attr name="disabledBackgroundColor" format="color"/>
<attr name="selectedBackgroundColor" format="color"/>
<attr name="backgroundEffect" format="enum">
<enum name="colorState" value="0"/>
<enum name="ripple" value="1"/>
<enum name="animateColor" value="2"/>
</attr>
<attr name="rippleColor" format="color"/>
</declare-styleable>
</resources>