55207730
 
  孙向锦
 
批次表決UI修改
 | 
1
2
3
4
5
6
7
8
9
10
11
12 
 | 
  <?xml version="1.0" encoding="utf-8"?>
  <selector xmlns:android="http://schemas.android.com/apk/res/android" >
  
  	<!-- 点击后的颜色 -->
  	<item android:state_pressed="true" android:drawable="@drawable/btn_modify_disable"/>
  	<item android:state_focused="true" android:drawable="@drawable/btn_modify_enable"/>
  
  	<item android:state_enabled="false" android:drawable="@drawable/btn_modify_disable"/>
  	<!-- 默认 -->
  	<item android:drawable="@drawable/btn_modify_enable"/>
  
  </selector>
 
 |