How can I Change the Text color of Time picker in android .....
I am having a black shadow background in my application and by default the time in Time picker is also in black so the time is not visible....
The default view of the time picker is
my XMl Entry is :
<TimePicker
android:id="@+id/timePicker"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
android Java code is :
timePicker = (TimePicker)findViewById(R.id.timePicker);
hour = calendar.get(Calendar.HOUR_OF_DAY);
minute = calendar.get(Calendar.MINUTE);
timePicker.setCurrentHour(hour);
timePicker.setCurrentMinute(minute);