IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!--圆角或者圆形图片组件-->
    <declare-styleable name="CircleImageView">
        <attr name="ease_border_color" format="color" />
        <attr name="ease_border_width" format="dimension" />
        <attr name="ease_press_alpha" format="integer" />
        <attr name="ease_press_color" format="color" />
        <attr name="ease_radius" format="dimension" />
        <attr name="es_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="AutoLinkTextView">
        <!-- 链接高亮颜色 -->
        <attr name="highlight_textcolor" format="color" />
        <!-- 默认文字颜色 -->
        <attr name="default_textcolor" format="color" />
    </declare-styleable>
 
    <declare-styleable name="DynamicSoreView">
        <!--设置每页显示几个-->
        <attr name="SoreNumber" format="integer" />
    </declare-styleable>
 
    <declare-styleable name="LinesEditView">
        <attr name="classic_maxCount" format="integer"/>
        <attr name="classic_ignoreCnOrEn" format="boolean"/>
        <attr name="classic_showPositive" format="boolean" />
        <attr name="classic_hintText" format="string|reference"/>
        <attr name="classic_hintTextColor" format="color|reference"/>
        <attr name="classic_contentText" format="string|reference"/>
        <attr name="classic_contentTextSize" format="dimension|reference"/>
        <attr name="classic_contentTextColor" format="color|reference"/>
        <attr name="classic_contentViewHeight" format="dimension|reference"/>
    </declare-styleable>
 
    <declare-styleable name="CornerTabLayout">
        <attr name="text_normal_color" format="reference|color"/>
        <attr name="text_selected_color" format="reference|color"/>
        <attr name="text_size" format="reference|dimension"/>
        <attr name="text_bg_selected_color" format="reference"/>
        <attr name="text_bg_normal_color" format="reference"/>
    </declare-styleable>
</resources>