程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何創建一個 transparent ImageButton?

android-如何創建一個 transparent ImageButton?

編輯:編程綜合問答
如何創建一個 transparent ImageButton?

我想創建一個transparent ImageButton,把這些按鈕放在一個 SurfaceView中。但是當我把代碼放在xml中,Eclipse返回錯誤。我不知道如何處理這個錯誤,感謝大家幫我指點迷津。

<ImageButton android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/media_skip_backward"
android:background="@drawable/transparent">
</ImageButton>

最佳回答:


使用代碼:

<ImageButton
    android:id="@+id/previous"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:src="@drawable/media_skip_backward" >
</ImageButton>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved