1

http://i.imgur.com/TjNrI.png?1 {アイコンの画像}

写真でわかるように、電話のアイコンには灰色の輪郭があります。その背景(灰色)を取り除き、画像をIconとして表示するにはどうすればよいですか。

 <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

ImageButtonには常にその境界線があり、これを修正するにはImageButtonをImageViewに置き換えるだけです。TmageButtonで機能するすべてのクラスとメソッドは、OnClickListenersなどのImageViewで機能します。

 <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 に答える