DatePickerDialog in Arabic

I have an Arabic application and I want to view a DatePickerDialog in Arabic.

I tried to install "Locale" but it didn't work.

thank

+3


source to share


1 answer


I found the answer to change the "Locale" of the whole application to "ar". On initial action, set your application Locale to "ar" by code and all views and dialogs will be translated to Arabic.



    Locale locale = new Locale("ar");
    Locale.setDefault(locale);
    Configuration config =
            getBaseContext().getResources().getConfiguration();
    config.setLocale(locale);
    createConfigurationContext(config);

      

0


source







All Articles