3

when i am changing app language to Hindi ..Date Picker Language also Changing. i tried Set language to French in android DatePickerDialog link but unable to solve?Can Anybody Suggest any Solution?

Chandan Sahoo
  • 31
  • 1
  • 2

1 Answers1

0

You can reset Locale before the DatePicker is displayed.

Locale locale = getResources().getConfiguration().locale; Locale.setDefault(locale);

initialise
  • 211
  • 1
  • 3
  • 11