嗨,我必须意识到这种布局。它有这个布局。
我可以尝试将图标用作图像按钮,但按钮的活动状态有点像这个!
我应该如何处理这个?
你应该使用selector
如下:
为按钮状态准备 2 张图像,并将其放入res/drawable
文件夹中。
button_normal_green.png – 默认图像按钮。
button_pressed_yellow.png – 按下按钮时显示。
现在,在“res/drawable/”文件夹中创建一个新的 XML 文件,使用您想要的任何名称,在这种情况下,我们只需将名称命名为“new_button.xml”。该文件定义了哪个按钮状态属于哪个图像。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_pressed_yellow" android:state_pressed="true" />
<item android:drawable="@drawable/button_normal_green" />
</selector>
3.将背景设置为按钮
<ImageButton
android:id="@+id/imageButtonSelector"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/new_button" />
看看完整的例子