Blame view

C5/app/src/main/res/drawable/add_other_selector.xml 377 Bytes
fac86401   孙向锦   初始化C5 Vote
1
2
3
4
5
6
7
8
9
10
  <?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_other_s"/>
  	<item android:state_focused="true" android:drawable="@drawable/btn_other"/>
  
  	<!-- 默认 -->
  	<item android:drawable="@drawable/btn_other"/>
  
  </selector>