attrs.xml
1.25 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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CirclePercentView">
<attr name="radius" format="dimension" />
<attr name="stripeWidth" format="dimension" /><!--色带宽度-->
<attr name="percent" format="integer" /><!--百分比 最大值为100-->
<attr name="smallColor" format="color" /><!--色带宽度-->
<!--外圈颜色-->
<attr name="bigColor" format="color" />
<!--中间字体颜色-->
<attr name="centerTextSize" format="dimension" />
<!--色带宽度-->
</declare-styleable>
<declare-styleable name="FivePersonIconView">
<attr name="showRightFlag" format="boolean" />
</declare-styleable>
<declare-styleable name="ScrollLayout">
<attr name="minOffset" format="dimension" />
<attr name="maxOffset" format="dimension" />
<attr name="exitOffset" format="dimension" />
<attr name="mode">
<flag name="open" value="0x0" />
<flag name="close" value="0x1" />
<flag name="exit" value="0x2" />
</attr>
<attr name="allowHorizontalScroll" format="boolean" />
<attr name="isSupportExit" format="boolean" />
</declare-styleable>
</resources>