| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <declare-styleable name="MyTitleView">
- <attr name="title_bg_color" format="color"/>
- <attr name="title_text_color" format="color"/>
- <attr name="title_text" format="string"/>
- <attr name="title_right_text" format="string"/>
- <attr name="left_image" format="reference"/>
- <attr name="right_image" format="reference"/>
- <attr name="center_image" format="reference"/>
- <attr name="title_right_text_color" format="color"/>
- <attr name="title_right_text_size" format="dimension"/>
- <attr name="title_text_gravity">
- <flag name="left" value="0" />
- <flag name="center" value="1" />
- </attr>
- </declare-styleable>
- <declare-styleable name="SwitchView">
- <attr name="switch_text" format="string"/>
- <attr name="switch_text_color" format="color"/>
- <attr name="switch_line_show" format="boolean"/>
- <attr name="switch_clickable" format="boolean"/>
- </declare-styleable>
- <declare-styleable name="TitleEditView">
- <attr name="edit_title" format="string"/>
- <attr name="edit_hint_text" format="string"/>
- <attr name="edit_input_icon" format="reference"/>
- <attr name="edit_input_required" format="boolean"/>
- <attr name="edit_input_bg" format="reference"/>
- <attr name="edit_input_focusable" format="boolean"/>
- <attr name="edit_input_type">
- <flag name="password" value="10" />
- <flag name="number" value="20" />
- <flag name="text" value="30" />
- </attr>
- </declare-styleable>
- <declare-styleable name="AreaCodeEditView">
- <attr name="edit_area_title" format="string"/>
- <attr name="edit_area_hint_text" format="string"/>
- <attr name="edit_area_code" format="string"/>
- <attr name="edit_area_input_required" format="boolean"/>
- <attr name="edit_area_flag_icon" format="reference"/>
- <attr name="edit_area_input_bg" format="reference"/>
- </declare-styleable>
- <declare-styleable name="UpLoadImageView">
- <attr name="load_bg" format="reference"/>
- <attr name="load_icon" format="reference"/>
- <attr name="load_text" format="string"/>
- </declare-styleable>
- <declare-styleable name="PasswordEditText">
- <!--密码个数-->
- <attr name="passwordNumber" format="integer"/>
- <!--密码原点的半径-->
- <attr name="passwordRadius" format="dimension"/>
- <!--密码原点的颜色-->
- <attr name="passwordColor" format="color"/>
- <!--分割线的颜色-->
- <attr name="divisionLineColor" format="color"/>
- <!--分割线的大小 指宽度-->
- <attr name="divisionLineSize" format="dimension"/>
- <!--背景边框的颜色-->
- <attr name="bgColor" format="color"/>
- <!--背景边框的大小-->
- <attr name="bgSize" format="dimension"/>
- <!--背景边框的圆角大小-->
- <attr name="bgCorner" format="dimension"/>
- </declare-styleable>
- <declare-styleable name="CommonUserItemView">
- <attr name="item_left_image_bg" format="reference"/>
- <attr name="item_right_image_bg" format="reference"/>
- <attr name="item_line_bg" format="reference"/>
- <attr name="item_left_image_show" format="boolean"/>
- <attr name="item_right_image_show" format="boolean"/>
- <attr name="item_line_show" format="boolean"/>
- <attr name="item_title_text" format="string"/>
- <attr name="item_detail_text" format="string"/>
- <attr name="item_title_text_color" format="color"/>
- <attr name="item_detail_text_color" format="color"/>
- <attr name="item_line_height" format="dimension"/>
- <attr name="item_title_text_size" format="dimension"/>
- <attr name="item_detail_text_size" format="dimension"/>
- <attr name="item_detail_text_style">
- <flag name="normal" value="10" />
- <flag name="bold" value="20" />
- <flag name="italic" value="30" />
- </attr>
- </declare-styleable>
- <declare-styleable name="MaxHeightRecyclerView">
- <attr name="maxHeight" format="dimension" />
- </declare-styleable>
- <declare-styleable name="FlowLayout">
- <attr name="horizontalSpacing" format="dimension"/>
- <attr name="verticalSpacing" format="dimension"/>
- </declare-styleable>
- <declare-styleable name="VerifyEditText">
- <!--输入框数量-->
- <attr name="inputCount" format="integer" />
- <!--输入框间距-->
- <attr name="inputSpace" format="dimension" />
- <!--下划线厚度-->
- <attr name="underlineHeight" format="dimension" />
- <!--输入框文本大小-->
- <attr name="mTextSize" format="dimension" />
- <!--下划线选中的颜色-->
- <attr name="focusColor" format="color" />
- <!--下划线未选中的颜色-->
- <attr name="defaultColor" format="color" />
- <!--下划线距文本的距离-->
- <attr name="underlineSpace" format="dimension" />
- <!--光标-->
- <attr name="cursorDrawable" format="reference" />
- </declare-styleable>
- <declare-styleable name="ClearEditText">
- <attr name="clear_image" format="reference"/>
- </declare-styleable>
- <declare-styleable name="EmptyView">
- <attr name="empty_image" format="reference"/>
- <attr name="empty_text" format="string"/>
- <attr name="empty_text_color" format="color"/>
- </declare-styleable>
- </resources>
|