我正在尝试在图像按钮上设置前景图像。这样,按钮灰色背景可见,图像出现在前景中。
我很感激任何想法。
由于
答案 0 :(得分:4)
如果要在设置前景图像时删除该灰色背景,请设置空背景图像。 或者只是设置前景图像而不是将背景图像设置为按钮。 我希望这能帮到您。
使用代码编辑
<ImageButton android:text="Button" android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"/>
<ImageButton android:text="Button" android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/icon"/>
答案 1 :(得分:-1)
仅使用按钮代替图像按钮。在xml中使用android:background =“@ drawable / yourdrawablewhichyouwanttoshow”希望它有所帮助!