阿拉伯语中的 DatePickerDialog

Abu*_*aid 5 android datepicker

我有一个阿拉伯语的应用程序,我想查看阿拉伯语的 DatePickerDialog。

我试过设置“语言环境”,但没有用。

谢谢

Abu*_*aid 6

我发现答案是将整个应用程序的“区域设置”更改为“ar”在您的启动活动中,通过以下代码将应用程序区域设置设置为“ar”,所有视图和对话框都将切换为阿拉伯语。

    Locale locale = new Locale("ar");
    Locale.setDefault(locale);
    Configuration config =
            getBaseContext().getResources().getConfiguration();
    config.setLocale(locale);
    createConfigurationContext(config);
Run Code Online (Sandbox Code Playgroud)