-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathattrs.xml
More file actions
22 lines (22 loc) · 1017 Bytes
/
attrs.xml
File metadata and controls
22 lines (22 loc) · 1017 Bytes
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>
<declare-styleable name="PatternLockView">
<attr name="dotCount" format="integer"/>
<attr name="dotNormalSize" format="dimension"/>
<attr name="dotSelectedSize" format="dimension"/>
<attr name="pathWidth" format="dimension"/>
<attr name="aspectRatioEnabled" format="boolean"/>
<attr name="aspectRatio" format="enum">
<enum name="square" value="0"/>
<enum name="width_bias" value="1"/>
<enum name="height_bias" value="2"/>
</attr>
<attr name="normalStateColor" format="color"/>
<attr name="correctStateColor" format="color"/>
<attr name="wrongStateColor" format="color"/>
<attr name="dotAnimationDuration" format="integer"/>
<attr name="pathEndAnimationDuration" format="integer"/>
<attr name="circleRadius" format="dimension"/>
<attr name="showCircleEnable" format="boolean"/>
</declare-styleable>
</resources>