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

android-如何創建一個透明的 ImageButton?

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

我想創建一個透明的 ImageButton,把這些按鈕都放在一個 SurfaceView 視圖中,我在XML中這樣設置的代碼:

<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 沒有創建成功,如何實現呀?

最佳回答:


給個具體的方法:

 <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