When I create a Button,
Button myButton = new Button(this);
myButton.setText("Click Me!");
it creates a button, that on click, turns "Orange" to indicate the click.
To the button when I add,
button.setBackgroundColor(Color.BLUE);
It creates a blue rectangle, and on click does not have a hightlight effect.
I don't mind the rectangle part, I want to get the orange highlight effect though.
Cannot use XML, need to do this in code.
Thanks