我想創(chuàng)建一個透明的 ImageButton,把這些按鈕都放在一個 SurfaceView 視圖中,我在XML中這樣設(shè)置的代碼:1 2 3 4 5 6 | < 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 沒有創(chuàng)建成功,如何實現(xiàn)呀?
解決方法 1:
給個具體的方法:
1 2 3 4 5 6 7 | < 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 >
|
|