Reputation: 945
I have an application in Arabic and I want to view the DatePickerDialog in Arabic.
I have tried setting "Locale" but that didn't work.
Thanks
Upvotes: 5
Views: 2742
Reputation: 945
I found the answer is to change the "Locale" of the whole app to "ar" At your starting activity set your application Locale to "ar" by below code and all views and dialogs will be switched to Arabic.
Locale locale = new Locale("ar");
Locale.setDefault(locale);
Configuration config =
getBaseContext().getResources().getConfiguration();
config.setLocale(locale);
createConfigurationContext(config);
Upvotes: 6