I made it like a source code below to make the image button transparent. There's an error in 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>
Try android:background="@null" or android:background="@android:color/transparent" in the background.
© 2024 OneMinuteCode. All rights reserved.