1

http://i.imgur.com/TjNrI.png?1 {图标的图像}

正如您在图片中看到的,电话图标中有一个灰色的轮廓。如何摆脱该背景(灰色)并仅将图像作为我的骗局。

 <ImageButton
      android:id="@+id/imageButton1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/phone" />

这是我已经拥有的。

谢谢 !

4

2 回答 2

3

尝试:

<ImageButton
  android:id="@+id/imageButton1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/phone"
  android:background="@null" />
于 2012-11-12T01:38:57.487 回答
0

ImageButtons 周围总是有边框,只需将 ImageButton 替换为 ImageView 即可解决此问题。在 TmageButton 上工作的所有类和方法都将在 ImageView 上工作,如 OnClickListeners 等。

 <ImageView
  android:id="@+id/imageView1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/phone" />
于 2012-11-12T03:58:02.187 回答