我想創建一個透明的 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>