Blame view

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