http://i.imgur.com/TjNrI.png?1 {图片图片}
如图所示,手机图标中有灰色轮廓。如何摆脱背景(灰色)并将图像作为I con。
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/phone" />
这就是我已经拥有的。
谢谢!
答案 0 :(得分:3)
尝试:
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/phone"
android:background="@null" />
答案 1 :(得分:0)
ImageButtons总是有它们的边框,只需用ImageView替换ImageButton来解决这个问题。所有适用于TmageButton的类和方法都可以在ImageView上运行,如OnClickListeners等。
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/phone" />