有没有办法在按下时突出显示ImageButton
?
答案 0 :(得分:13)
您可以通过XML定义一个drawable,并使用选择器(如下所示)为不同的按钮状态使用不同的(即突出显示的)图像:
即。 RES /抽拉/ button.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/bg_catlocfilter" android:state_pressed="false" />
<item android:drawable="@drawable/bg_catlocfilter_dark" android:state_pressed="true" />
<item android:drawable="@drawable/bg_catlocfilter" android:state_focused="false" />
<item android:drawable="@drawable/bg_catlocfilter_dark" android:state_focused="true" />
</selector>
然后将此资源用于ImageButton视图。
答案 1 :(得分:0)
参考this链接。我遇到了同样的问题,现在解决了我的问题。希望这会有所帮助: - )