如何在按下状态下更改按钮宽度和高度? 按下按钮时,宽度和高度应该增加,当它处于正常模式(即未按下模式)时,它应该返回到正常的宽度和高度。
我尝试使用<selector>
,但没有android:width & android:height
选项
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/egg" android:state_pressed="true" />
<item android:drawable="@drawable/egg" android:state_focused="true" />
<item android:drawable="@drawable/egg" />
</selector>