-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathattrs.xml
More file actions
37 lines (35 loc) · 1.78 KB
/
Copy pathattrs.xml
File metadata and controls
37 lines (35 loc) · 1.78 KB
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
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="fontPath" format="string"/>
<declare-styleable name="CustomAttributes">
<!-- Color of ripple animation -->
<attr name="rippleColor" format="color|reference" />
<!-- Speed of ripple animation -->
<attr name="rippleSpeed" format="float" />
<!-- indicate if the slider must show number indicator -->
<attr name="showNumberIndicator" format="boolean" />
<!-- in progress view indicate max value of progress -->
<attr name="max" format="integer" />
<!-- in progress view indicate min value of progress -->
<attr name="min" format="integer" />
<!-- in progress view indicate value of progress -->
<attr name="value" format="integer" />
<!-- in progress view indicate value of progress -->
<attr name="progress" format="integer" />
<attr name="ringWidth" format="dimension" />
<!-- in switche's view indicate state of view -->
<attr name="checked" format="boolean" />
<attr name="checkBoxSize" format="dimension" />
<attr name="thumbSize" format="dimension" />
<!-- in float button indicate icon resource -->
<attr name="iconDrawable" format="integer" />
<!-- in button whitch contains drawable indicate icon resource -->
<attr name="iconSize" format="dimension" />
<!-- in float button indicate if must start with animation -->
<attr name="animate" format="boolean" />
<!-- set the border of the ripple frame -->
<attr name="rippleBorderRadius" format="float" />
<!-- if true, delays calls to OnClickListeners until ripple effect ends -->
<attr name="clickAfterRipple" format="boolean" />
</declare-styleable>
</resources>