123
hxb
2022-11-24 4ec30c4521bad6a7e63b5e6a8b6c867f2a2b3c5b
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CommonRatioImageView">
        <attr name="width_relative" format="dimension" />
        <attr name="height_relative" format="dimension" />
 
    </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" />
        <attr name="civ_circle_background_color" format="color" />
    </declare-styleable>
 
    <declare-styleable name="DayPickerView">
        <attr name="colorSelectedBgThis" format="color"/>
        <attr name="colorSelectedBgLast" format="color"/>
        <attr name="colorSelectedBg1" format="color"/>
        <attr name="colorSelectedBg2" format="color"/>
        <attr name="colorSelectedBg3" format="color"/>
        <attr name="drawRoundRect" format="boolean" />
        <attr name="modeOfDay" format="boolean" />
        <attr name="colorEnableDay" format="color"/>
        <attr name="colorNormalDay" format="color" />
        <attr name="colorMonthName" format="color" />
        <attr name="colorDayName" format="color" />
        <attr name="textSizeDay" format="dimension"/>
        <attr name="textSizeMonth" format="dimension" />
        <attr name="textSizeDayName" format="dimension" />
        <attr name="headerMonthHeight" format="dimension" />
        <attr name="selectedDayRadius" format="dimension" />
        <attr name="calendarHeight" format="dimension" />
 
    </declare-styleable>
 
    <declare-styleable name="LineChart">
        <attr name="god_mode" format="boolean"></attr>
    </declare-styleable>
 
    <declare-styleable name="FilletCornerImageView">
        <attr name="fillet_border_color" format="color"/>
        <attr name="fillet_border_color_selected" format="color"/>
        <attr name="fillet_border_color_normal" format="color"/>
        <attr name="fillet_border_width" format="dimension"/>
        <attr name="fillet_radius" format="dimension"/>
        <attr name="fillet_shape_type" format="enum">
            <enum name="none" value="0"/>
            <enum name="round" value="1"/>
            <enum name="rectangle" value="2"/>
        </attr>
    </declare-styleable>
 
    <declare-styleable name="MLBorderImageView">
        <attr name="border_color" format="color"/>
        <attr name="border_color_selected" format="color"/>
        <attr name="border_color_normal" format="color"/>
        <attr name="border_width" format="dimension"/>
        <attr name="radius" format="dimension"/>
        <attr name="shape_type" format="enum">
            <enum name="none" value="0"/>
            <enum name="round" value="1"/>
            <enum name="rectangle" value="2"/>
        </attr>
    </declare-styleable>
 
    <declare-styleable name="WheelPicker">
        <attr name="halfVisibleItemCount" format="integer"/>
        <attr name="itemTextSize" format="dimension"/>
        <attr name="itemTextColor" format="color"/>
        <attr name="textGradual" format="boolean"/>
        <attr name="selectedTextColor" format="color"/>
        <attr name="selectedTextSize" format="dimension"/>
        <attr name="selectedBorderColor" format="color"/>
        <attr name="currentItemPosition" format="integer"/>
        <attr name="itemWidthSpace" format="dimension"/>
        <attr name="itemHeightSpace" format="dimension"/>
        <attr name="zoomInSelectedItem" format="boolean"/>
        <attr name="wheelCyclic" format="boolean"/>
        <attr name="indicatorText" format="string"/>
        <attr name="indicatorTextSize" format="dimension"/>
        <attr name="indicatorTextColor" format="color"/>
    </declare-styleable>
    <declare-styleable name="CircleCountDownView">
        <!--颜色-->
        <attr name="ringColor" format="color|reference" />
        <attr name="ringbgColor" format="color|reference" />
        <!-- 进度文本的字体大小 -->
        <attr name="progressTextSize" format="dimension|reference" />
        <!-- 圆环宽度 -->
        <attr name="ringWidth" format="dimension|reference" />
        <!--进度文本颜色-->
        <attr name="progressTextColor" format="color|reference" />
        <!--倒计时-->
        <attr name="countdownTime" format="integer" />
    </declare-styleable>
</resources>