attrs.xml
2.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="SeatTableView">
<attr name="seat_checked" format="reference" />
<attr name="seat_sold" format="reference" />
<attr name="seat_available" format="reference" />
<attr name="overview_checked" format="color" />
<attr name="overview_sold" format="color" />
<attr name="txt_color" format="color" />
</declare-styleable>
<declare-styleable name="CircleImageView">
<attr name="civ_border_width" format="dimension" />
<attr name="civ_border_color" format="color" />
<attr name="civ_border_overlay" format="boolean" />
<attr name="civ_fill_color" format="color" />
</declare-styleable>
<declare-styleable name="TagCloudLayout">
<attr name="lineSpacing" format="dimension" />
<attr name="tagSpacing" format="dimension" />
<!-- 是否是固定布局 -->
<attr name="isFixed" format="boolean" />
<attr name="columnSize" format="integer" />
</declare-styleable>
<declare-styleable name="FancyCoverFlow">
<attr name="unselectedAlpha" format="float" />
<attr name="unselectedSaturation" format="float" />
<attr name="unselectedScale" format="float" />
<attr name="maxRotation" format="integer" />
<attr name="scaleDownGravity" format="float" />
<attr name="actionDistance" format="integer">
<enum name="auto" value="2147483647" />
</attr>
</declare-styleable>
<declare-styleable name="HelloGallery">
<attr name="android:galleryItemBackground" />
</declare-styleable>
<!--文字描边-->
<declare-styleable name="StrokeTextView">
<attr name="outerColor" format="color|reference" />
<attr name="innnerColor" format="color|reference" />
</declare-styleable>
<declare-styleable name="CirclePoint">
<attr name="ci_radius" format="dimension" />
<attr name="ci_margin" format="dimension" />
<attr name="ci_background" format="color|integer" />
<attr name="ci_selected_background" format="color|integer" />
<attr name="ci_gravity">
<enum name="left" value="0" />
<enum name="center" value="1" />
<enum name="right" value="2" />
</attr>
<attr name="ci_mode">
<enum name="inside" value="0" />
<enum name="outside" value="1" />
<enum name="solo" value="2" />
</attr>
</declare-styleable>
</resources>