-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathattrs.xml
More file actions
50 lines (46 loc) · 2.27 KB
/
attrs.xml
File metadata and controls
50 lines (46 loc) · 2.27 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
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="StatusViewScroller">
<attr name="circleRadius" format="dimension" />
<attr name="stepCount" format="integer" />
<attr name="currentCount" format="integer" />
<attr name="lineLength" format="dimension" />
<attr name="circleColor" format="color"/>
<attr name="circleStrokeColor" format="color"/>
<attr name="lineColor" format="color"/>
<attr name="textColorStatus" format="color"/>
<attr name="textSizeStatus" format="dimension"/>
<attr name="circleStrokeWidth" format="dimension"/>
<attr name="lineWidth" format="dimension"/>
<attr name="textColorLabels" format="color"/>
<attr name="textSizeLabels" format="dimension"/>
<attr name="circleColorType">
<flag name="none" value="0" />
<flag name="fill" value="1" />
<flag name="stroke" value="2" />
<flag name="fillStroke" value="3" />
</attr>
<attr name="circleColorIncomplete" format="color"/>
<attr name="circleColorCurrent" format="color"/>
<attr name="circleStrokeColorIncomplete" format="color"/>
<attr name="circleStrokeColorCurrent" format="color"/>
<attr name="lineColorIncomplete" format="color"/>
<attr name="lineColorCurrent" format="color"/>
<attr name="textColorLabelsIncomplete" format="color"/>
<attr name="textColorLabelsCurrent" format="color"/>
<attr name="completeDrawable" format="reference"/>
<attr name="currentDrawable" format="reference"/>
<attr name="incompleteDrawable" format="reference"/>
<attr name="drawLabels" format="boolean"/>
<attr name="drawCount" format="boolean"/>
<attr name="strictObeyLineLength" format="boolean"/>
<attr name="lineGap" format="dimension"/>
<attr name="minStatusAdjacentMargin" format="dimension"/>
<attr name="statusTopMargin" format="dimension"/>
<attr name="currentStepZoom" format="float"/>
<attr name="alignStatusWithCurrent" format="boolean"/>
<attr name="statusFont" format="reference"/>
<attr name="labelFont" format="reference"/>
<attr name="android:entries" />
</declare-styleable>
</resources>