Commit f936758ba0f268ecb888d434a3608ae9d3241628

Authored by YangShuai
1 parent 2fbfb503

1 修改按钮不可选中时的提示颜色

config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.1.3",
  24 + version: "0.1.5",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
module_xiaojiaSoundBox/src/main/res/drawable/shape_xiaojia_btn_press.xml
1 1 <?xml version="1.0" encoding="utf-8"?>
2 2 <shape xmlns:android="http://schemas.android.com/apk/res/android">
3 3 <corners android:radius="50dp" />
4   - <solid android:color="@color/btn_press" />
  4 + <solid android:color="@color/btn_xiaojia_press" />
5 5 </shape>
6 6 \ No newline at end of file
... ...
module_xiaojiaSoundBox/src/main/res/values/colors.xml
... ... @@ -28,7 +28,7 @@
28 28 <color name="color_999999">#999999</color>
29 29 <color name="color_23D41E">#23D41E</color>
30 30 <color name="btn_green">#23D41E</color>
31   - <color name="btn_press">#CCCCCCCC</color>
  31 + <color name="btn_xiaojia_press">#D3D3D3</color>
32 32 <color name="round_rectangle_press">#80CCCCCC</color>
33 33 <color name="color_C3C3C3">#C3C3C3</color>
34 34 <color name="color_F2F2F2">#F2F2F2</color>
... ...