I have my background colour for views in all activities set to black. I try to use the standard date picker view. Unfortuneatley text seems to be black. This makes it invisible. Up to now I have been using code to change some text. I tried to do
childpicker1 = (ViewGroup) findViewById(Resources.getSystem().getIdentifier("month"
/*rest is: day, year*/, "id", "android"));
EditText textview1 = (EditText) childpicker1.getChildAt(0);
textview1.setTextColor(Color.WHITE);
And this seems to initially work but when I try to scroll or select another value the text goes back to black so thats not good. Does anyone now what is the best way to change the text colour of the date picker in android ?