回答

4

如果你想在你設定的前景圖像,然後設定一個空的背景圖像刪除灰色背景。 或簡單而不是將前景圖像設置爲只將背景圖像設置爲按鈕。 我希望這會幫助你。

與代碼編輯

<ImageButton android:text="Button" android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/icon"/> 

When you use set only foreground by using android:src propery

<ImageButton android:text="Button" android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/icon"/> 

When you set only Background using android:background property

-1

僅使用按鈕代替的ImageButton。在xml中使用android:background =「@ drawable/yourdrawablewhichyouwanttoshow」希望它有幫助!