0

When I use ImageButton in an activity it appears with a background color like this:

ImageButton

What do I have to do to remove this dark color?

matiash
  • 54,791
  • 16
  • 125
  • 154
Eiad Deeb
  • 187
  • 2
  • 6

2 Answers2

1

Use imageButton.setBackgroundColor(Color.TRANSPARENT);

Or, if you want to do it in XML: android:background="@android:color/transparent"

matiash
  • 54,791
  • 16
  • 125
  • 154
0

If your png file has transparent background and you want a transparent background, save your image files with PNG 32 format.

mht
  • 80
  • 2
  • 7