I have tried the following
View view = (View) findViewById (id);
view.setBackgroundColor (Color.WHITE);
The above destroys the property of the ToggleButton. I can
no longer make out if it is TextView or ToggleButton. Clicking the button
produces onClick but the UI change to show the selected bar is absent.
ToggleButton btn = (ToggleButton) findViewById (id);
btn.setBackgroundColor (Color.WHITE);
This also produces the same error. Using XML styling also
causes the same error. I am using Android Studio v1.0.2 and the target is a
lollipop emulator. I tried the same in 4.4.4 mobile. I see the same behavior.
I don't want to use images. Kindly don't suggest me that. I
have gone through the threads that are available in stackoverflow - nothing
works for me.
Can anyone help me?
It will be something like this as an xml file in drawables that you want as the background for the toggle button. You need to add the various colors to a color file in res/values.
I haven't checked it so I don't know if it works. Please let me know if I made any errors.