Blame view

app/src/main/res/drawable-xhdpi/press_keyboard_selector.xml 538 Bytes
27983dbe   孙向锦   project init
1
2
3
4
5
6
7
  <?xml version="1.0" encoding="utf-8"?>
  <selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:drawable="@color/colorYellow" android:state_pressed="true"/>  <!-- 按下 -->
   <item android:drawable="@color/colorLightGreen" android:state_focused="false" android:state_pressed="false"/>  <!-- 聚焦 -->
   <item android:drawable="@color/colorLightGreen"  android:state_focused="true"/>  <!-- 聚焦 -->
   <item android:drawable="@color/colorLightGreen" android:state_focused="false"/>   <!-- 聚焦 -->
  </selector>