Can I make the image button transparent on Android?

Asked 2 years ago, Updated 2 years ago, 124 views

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>

android imagebutton surfaceview transparent

2022-09-22 12:19

1 Answers

Try android:background="@null" or android:background="@android:color/transparent" in the background.


2022-09-22 12:19

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.