在Android中的图像按钮上设置前景图像

时间:2011-09-06 11:39:40

标签: android android-widget android-ui android-imageview android-button

我正在尝试在图像按钮上设置前景图像。这样,按钮灰色背景可见,图像出现在前景中。

我很感激任何想法。

由于

2 个答案:

答案 0 :(得分:4)

如果要在设置前景图像时删除该灰色背景,请设置空背景图像。 或者只是设置前景图像而不是将背景图像设置为按钮。 我希望这能帮到您。

使用代码编辑

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:src="@drawable/icon"/>

When you use set only foreground by using android:src propery

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:background="@drawable/icon"/>

When you set only Background using android:background property

答案 1 :(得分:-1)

仅使用按钮代替图像按钮。在xml中使用android:background =“@ drawable / yourdrawablewhichyouwanttoshow”希望它有所帮助!