Removing Background color in Android
I have set backgroundColor like this in code,
View.setBackgroundColor(0xFFFF0000);
How to remove this background color on some event.?
Removing Background color in Android
I have set backgroundColor like this in code,
View.setBackgroundColor(0xFFFF0000);
How to remove this background color on some event.?
Please try to set the background color to transparent
View.setBackgroundColor(0x00000000);