制作Android图标只有一个图像,没有背景?

时间:2012-11-12 01:34:09

标签: android image icons

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" />

这就是我已经拥有的。

谢谢!

2 个答案:

答案 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" />