-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattrs.xml
More file actions
40 lines (36 loc) · 1.67 KB
/
attrs.xml
File metadata and controls
40 lines (36 loc) · 1.67 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
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="ConfirmationCodeView">
<attr name="ccvCount" format="integer" />
<attr name="ccvLineWidth" format="dimension" />
<attr name="ccvSize" format="dimension" />
<attr name="ccvText" format="string" />
<attr name="ccvContentType" format="integer" >
<enum name="mixture" value="0"/>
<enum name="letter" value="1"/>
<enum name="digit" value="2"/>
</attr>
<attr name="ccvDirection" format="integer" >
<enum name="ltr" value="0"/>
<enum name="rtl" value="1"/>
</attr>
<attr name="ccvBorderShape" format="integer" >
<enum name="line" value="0"/>
<enum name="square" value="1"/>
<enum name="squareLine" value="2"/>
<enum name="rectangle" value="3"/>
<enum name="circle" value="4"/>
</attr>
<attr name="ccvBorderColor" format="color|reference" />
<attr name="ccvBorderSelectColor" format="color|reference" />
<attr name="ccvBorderRadius" format="dimension" />
<attr name="ccvPasswordMode" format="boolean" />
<attr name="ccvTextColor" format="color|reference" />
<attr name="ccvTextSelectColor" format="color|reference" />
<attr name="ccvPasswordColor" format="color|reference" />
<attr name="ccvPasswordSelectColor" format="color|reference" />
<attr name="ccvContentColor" format="color|reference" />
<attr name="ccvContentSelectColor" format="color|reference" />
<attr name="ccvPadding" format="dimension" />
</declare-styleable>
</resources>