android statelistdrawable基本设置

来源:互联网 发布:spss19.0数据分析教程 编辑:程序博客网 时间:2024/06/08 09:19

在drawable文件夹里,创建:

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item android:state_checked="true" android:drawable="@drawable/checked"/>    <item android:state_focused="true" android:drawable="@drawable/focus"/>    <item android:state_pressed="true" android:drawable="@drawable/pressed"/></selector>



0 0