| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources xmlns:ns1="http://schemas.android.com/tools">
- <color name="widget_settingBarBackgroundColor">#FFFFFFFF</color>
- <color name="widget_settingBarSelectorColor">#0c000000</color>
- <declare-styleable name="NumberProgressBar" ns1:ignore="ResourceName">
- <attr format="integer" name="pb_progress"/>
- <attr format="integer" name="pb_maxProgress"/>
- <attr format="dimension" name="pb_textSize"/>
- <attr format="color" name="pb_textColor"/>
- <attr format="dimension" name="pb_textOffset"/>
- <attr format="color" name="pb_unreachedColor"/>
- <attr format="color" name="pb_reachedColor"/>
- <attr format="dimension" name="pb_reachedHeight"/>
- <attr format="dimension" name="pb_unreachedHeight"/>
- </declare-styleable>
- <declare-styleable name="RegexEditText">
- <!-- 正则输入限制 -->
- <attr format="string" name="inputRegex"/>
- <!-- 常用正则类型 -->
- <attr name="regexType">
- <!-- 手机号(只能以 1 开头) -->
- <enum name="mobile" value="0x01"/>
- <!-- 中文(普通的中文字符) -->
- <enum name="chinese" value="0x02"/>
- <!-- 英文(大写和小写的英文) -->
- <enum name="english" value="0x03"/>
- <!-- 整数(非 0 开头的数字) -->
- <enum name="count" value="0x04"/>
- <!-- 用户名(中文、英文、数字) -->
- <enum name="name" value="0x05"/>
- <!-- 非空格字符 -->
- <enum name="nonnull" value="0x06"/>
- </attr>
- </declare-styleable>
- <declare-styleable name="SettingBar" ns1:ignore="ResourceName">
- <!-- 左边 -->
- <attr format="string" name="bar_leftText"/>
- <attr format="string" name="bar_leftHint"/>
- <attr format="reference" name="bar_leftIcon"/>
- <attr format="color" name="bar_leftColor"/>
- <attr format="dimension" name="bar_leftSize"/>
- <attr format="color" name="bar_leftColorHint"/>
- <!-- 右边 -->
- <attr format="string" name="bar_rightText"/>
- <attr format="string" name="bar_rightHint"/>
- <attr format="reference" name="bar_rightIcon"/>
- <attr format="color" name="bar_rightColor"/>
- <attr format="dimension" name="bar_rightSize"/>
- <!-- 分割线 -->
- <attr format="boolean" name="bar_lineVisible"/>
- <attr format="reference|color" name="bar_lineColor"/>
- <attr format="dimension" name="bar_lineSize"/>
- <attr format="dimension" name="bar_lineMargin"/>
- </declare-styleable>
- <declare-styleable name="SwitchButton" ns1:ignore="ResourceName">
- <!-- 是否选中 -->
- <attr name="android:checked"/>
- <!-- 是否禁用 -->
- <attr name="android:enabled"/>
- </declare-styleable>
- </resources>
|