有人可以建议我点击图片按钮的图像吗?我的意思是我需要样本
由于
答案 0 :(得分:3)
使用这样的选择器:
<?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/image" />
<item android:state_focused="true" android:drawable="@drawable/image" />
<item android:state_selected = "true" android:drawable = "@drawable/image" />
<item android:drawable = "@drawable/defaultimage" />
</selector>
将其保存在yourselectorname.xml中并使用它代替图像...