小编典典

如何拥有透明的 ImageButton:Android

all

<ImageButton android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/media_skip_backward"
android:background="@drawable/transparent"></ImageButton>

这就是我试图获得一个透明的 ImageButton 以便将这些按钮放在 SurfaceView 上的原因。但是,只要我在 xml
中包含透明行,Eclipse 就会在项目中给我一个错误。

请帮忙。


阅读 162

收藏
2022-03-10

共1个答案

小编典典

尝试使用 null 作为背景…

android:background="@null"
2022-03-10