改变宽度和宽度图像按钮处于按下状态时的高度

时间:2018-06-17 15:54:50

标签: android android-button

如何在按下状态下更改按钮宽度和高度? 按下按钮时,宽度和高度应该增加,当它处于正常模式(即未按下模式)时,它应该返回到正常的宽度和高度。

我尝试使用<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>

0 个答案:

没有答案