Blame view

C5/app/src/main/res/drawable/oppos_selector.xml 496 Bytes
fac86401   孙向锦   初始化C5 Vote
1
2
3
  <?xml version="1.0" encoding="utf-8"?>
  <selector xmlns:android="http://schemas.android.com/apk/res/android" >
      <!-- 点击后的颜色 -->
a5a485e9   wutaian   修改提交,弃权,反对按钮样式,添加颜色
4
5
  	<item android:state_pressed="true" android:drawable="@drawable/darkgrey_round_button"/>
  	<item android:state_focused="true" android:drawable="@drawable/red_round_button"/>
fac86401   孙向锦   初始化C5 Vote
6
  
a5a485e9   wutaian   修改提交,弃权,反对按钮样式,添加颜色
7
  	<item android:state_enabled="false" android:drawable="@drawable/darkgrey_round_button"/>
fac86401   孙向锦   初始化C5 Vote
8
  	<!-- 默认 -->
a5a485e9   wutaian   修改提交,弃权,反对按钮样式,添加颜色
9
  	<item android:drawable="@drawable/red_round_button"/>
fac86401   孙向锦   初始化C5 Vote
10
11
  	    
  </selector>