I used this to generate a custom theme for my application (basically just a nice green instead of the default blue)
I have a CheckBox
in my app, and it has the green hue applied. I also have textviews, and the underlines are colored correctly.
But if I use
AlertDialog.Builder builder = new AlertDialog.Builder(this);
to build a confirm dialog, the No
and Yes
buttons critically have the default holo blue - it's really jarring in that everything else in the app is consistently themed.
How can I get to that color and change it? I'd really love to not have to define an entire custom dialog view just to solve this single color problem.