6

嗨,我必须意识到这种布局。它有这个布局。 非活动按钮

我可以尝试将图标用作图像按钮,但按钮的活动状态有点像这个!

一个按钮被按下

我应该如何处理这个?

4

1 回答 1

1

你应该使用selector如下:

  1. 为按钮状态准备 2 张图像,并将其放入res/drawable文件夹中。

    button_normal_green.png – 默认图像按钮。

    button_pressed_yellow.png – 按下按钮时显示。

  2. 现在,在“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" />

看看完整的例子

于 2013-10-20T09:06:10.543 回答