我能够对简单按钮进行触摸有效,但对于尺寸不规则的图像按钮,它就像一个矩形,应该是不规则尺寸的图像。有没有办法做到这一点?不介意问题,我是Android的新手!我使用了以下代码。
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/food_btn" /> <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/gradiant" /> <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/gradiant" /> <item android:drawable="@drawable/food_btn" /> </selector>
感谢。