chufengma / android-skills

android 平时需要注意的小技巧,小构思,小想法。
6 stars 2 forks source link

Drawable selector 默认的那个Item要写在最下面才能显示全部状态 #6

Open chufengma opened 9 years ago

chufengma commented 9 years ago
 <?xml version="1.0" encoding="utf-8"?>
  <selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:drawable="@drawable/drawable_resource"
        android:state_pressed="true" />
    <item
        android:drawable="@drawable/drawable_resource"/>
  </selector>