haijiang
2018-07-10 e48c183a0984908c14eebd9791761d13d9baca2c
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="NineGridLayout">
        <attr name="spacing" format="dimension" />
        <attr name="horizontal_spacing" format="dimension" />
        <attr name="vertical_spacing" format="dimension" />
        <attr name="single_mode" format="boolean" />
        <attr name="four_gird_mode" format="boolean" />
        <attr name="single_mode_width" format="dimension" />
        <attr name="single_mode_height" format="dimension" />
        <attr name="single_mode_overflow_scale" format="boolean" />
    </declare-styleable>
 
 
    <declare-styleable name="MyRatingBar">
        <attr name="space_width" format="dimension"></attr>
        <attr name="star_width" format="dimension"></attr>
        <attr name="star_height" format="dimension"></attr>
        <attr name="star_max" format="integer"></attr>
        <attr name="star_rating" format="float"></attr>
        <attr name="star_hollow" format="reference"></attr>
        <attr name="star_solid" format="reference"></attr>
        <attr name="star_isIndicator" format="boolean"></attr>
        <attr name="star_orientation" format="integer"></attr>
    </declare-styleable>
</resources>