HDL_Widget Android和iOS精简版的库,去掉高德SDK,和iOS裁剪方法
JLChen
2021-01-08 07a4e46efd0d180f881a9761c6f737e5d1c47848
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="HDLArcSeekBar">
        <attr name="arc_width" format="dimension|reference" />
        <attr name="arc_open_angle" format="float" />
        <attr name="arc_rotate_angle" format="float" />
        <attr name="arc_colors" format="reference" />
        <attr name="arc_border_width" format="dimension|reference" />
        <attr name="arc_border_color" format="color|reference" />
        <attr name="arc_max" format="integer|reference" />
        <attr name="arc_min" format="integer|reference" />
        <attr name="arc_progress" format="integer|reference" />
        <attr name="arc_thumb_width" format="dimension|reference" />
        <attr name="arc_thumb_color" format="color|reference" />
        <attr name="arc_thumb_radius" format="dimension|reference" />
        <attr name="arc_thumb_shadow_radius" format="dimension|reference" />
        <attr name="arc_thumb_shadow_color" format="color|reference" />
        <attr name="hdl_arc_thumb_mode" format="integer|dimension">
            <enum name="STROKE" value="0" />
            <enum name="FILL" value="1" />
            <enum name="FILL_STROKE" value="2" />
        </attr>
        <attr name="arc_shadow_radius" format="dimension|reference" />
        <attr name="arc_progress_bar_color" format="color|reference" />
        <attr name="arc_progress_bar_text_unit" format="string|reference" />
 
    </declare-styleable>
 
 
    <declare-styleable name="HDLWaveSeekBar">
        <attr name="wave_color" format="color"></attr>
        <attr name="second_wave_color" format="color"></attr>
        <attr name="wave_bg_color" format="color"></attr>
        <attr name="wave_border_color" format="color"></attr>
 
        <attr name="wave_width" format="dimension"></attr>
        <attr name="wave_height" format="dimension"></attr>
 
 
    </declare-styleable>
 
    <declare-styleable name="HDLCurtainSeekBar">
        <attr name="curtain_bar_color" format="color"></attr>
        <attr name="second_curtain_bar_color" format="color"></attr>
        <attr name="curtain_bar_bg_color" format="color"></attr>
        <attr name="curtain_bar_border_color" format="color"></attr>
 
        <attr name="curtain_bar_width" format="dimension"></attr>
        <attr name="curtain_bar_height" format="dimension"></attr>
 
 
    </declare-styleable>
 
 
 
    <declare-styleable name="pickerview">
        <attr name="wheelview_gravity">
            <enum name="center" value="17"/>
            <enum name="left" value="3"/>
            <enum name="right" value="5"/>
        </attr>
        <attr name="wheelview_textSize" format="dimension"/>
        <attr name="wheelview_textColorOut" format="color"/>
        <attr name="wheelview_textColorCenter" format="color"/>
        <attr name="wheelview_dividerColor" format="color"/>
        <attr name="wheelview_lineSpacingMultiplier" format="float"/>
    </declare-styleable>
</resources>