attrs.xml
1.52 KB
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="AmountView">
<!-- 左右2边+-按钮的宽度 -->
<attr name="btnWidth" format="dimension" />
<!-- 中间TextView的宽度 -->
<attr name="tvWidth" format="dimension" />
<!--<attr name="tvColor" format="color"/>-->
<attr name="tvTextSize" format="dimension"/>
<attr name="btnTextSize" format="dimension"/>
</declare-styleable>
<declare-styleable name="TitleView">
<attr name="showBack" format="boolean" />
<attr name="showChoose" format="boolean" />
<attr name="text" format="string" />
</declare-styleable>
<declare-styleable name="LinearItemView">
<attr name="leftSize" format="integer" />
<attr name="rightSize" format="integer" />
<attr name="paddingLR" format="integer" />
<attr name="leftColor" format="color" />
<attr name="rightColor" format="color" />
<attr name="bgColor" format="color" />
<attr name="toRight" format="boolean" />
<attr name="showUnderLine" format="boolean" />
<attr name="leftTx" format="string" />
<attr name="rightTx" format="string" />
</declare-styleable>
<declare-styleable name="BarCodeView">
<attr name="hint" format="string" />
<attr name="barBgColor" format="color" />
</declare-styleable>
<declare-styleable name="MenuGroupView">
<attr name="menuGroupName" format="string" />
</declare-styleable>
</resources>