1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <!--布局中的文字-->
- <attr name="text" format="string"/>
- <!--文字的大小-->
- <attr name="textSize" format="dimension"/>
- <!--文字的颜色-->
- <attr name="textColor" format="color"/>
- <declare-styleable name="MenuItemView">
- <!--布局中左边的icon-->
- <attr name="leftIcon" format="reference"/>
- <!--布局中右边的icon-->
- <attr name="rightIcon" format="reference"/>
- <!--布局中的文字-->
- <attr name="text"/>
- <!--文字的大小-->
- <attr name="textSize"/>
- <!--文字的颜色-->
- <attr name="leftTextColor" format="color"/>
- <attr name="rightTextColor" format="color"/>
- </declare-styleable>
- <declare-styleable name="RowText">
- <!--布局中的文字-->
- <attr name="text"/>
- <!--文字的大小-->
- <attr name="textSize"/>
- <!--文字的颜色-->
- <attr name="textColor"/>
- </declare-styleable>
- <!--自定义验证码输入布局-->
- <declare-styleable name="InputCodeLayout">
- <!--输入框数量-->
- <attr name="icl_number" format="integer"/>
- <!--输入框宽度-->
- <attr name="icl_width" format="dimension|reference"/>
- <!--输入框高度-->
- <attr name="icl_height" format="dimension|reference"/>
- <!--输入框之间的分割线宽度-->
- <attr name="icl_divideWidth" format="dimension|reference"/>
- <!--输入文字颜色-->
- <attr name="icl_textColor" format="color|reference"/>
- <!--输入文字大小-->
- <attr name="icl_textSize" format="dimension|reference"/>
- <!--有焦点时输入框背景-->
- <attr name="icl_focusBackground" format="reference"/>
- <!--无焦点时输入框背景-->
- <attr name="icl_unFocusBackground" format="reference"/>
- <!--显示模式-->
- <attr name="icl_showMode">
- <enum name="normal" value="0"/><!--正常-->
- <enum name="password" value="1"/><!--密码-->
- </attr>
- <!--输入框显示位置-->
- <attr name="android:gravity"/>
- </declare-styleable>
- <declare-styleable name="CircleImageView">
- <attr name="border_width" format="dimension" />
- <attr name="border_color" format="color" />
- </declare-styleable>
- </resources>
|