riku
2020-08-21 0328eab9276e57487eb2cfff31a945a01dd8c73a
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--圆形图片-->
    <declare-styleable name="CircleImageView">
        <attr name="border_width" format="dimension" />
        <attr name="border_color" format="color" />
    </declare-styleable>
 
 
 
    <!-- 在这里面自定义属性 -->
    <declare-styleable name="SettingCommItemView">
        <!-- 文字取值 -->
        <attr name="item_text" format="string" />
 
 
        <!-- 文字的大小 -->
        <attr name="item_text_size" format="dimension" />
 
 
        <!-- 文字的颜色 -->
        <attr name="item_text_color" format="color" />
 
 
 
        <!-- 图片的引用 -->
        <attr name="img_src" format="reference" />
        <!-- 是否显示分割线 -->
        <attr name="is_divider_visibility" format="boolean" />
 
    </declare-styleable>
 
    <declare-styleable name="SlideSideBarView">
        <attr name="mode" format="integer" />
        <attr name="src" format="reference" />
    </declare-styleable>
</resources>