阿拉伯语言的DatePickerDialog

时间:2017-07-23 15:33:47

标签: android datepicker

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

我已尝试设置“区域设置”,但这不起作用。

由于

1 个答案:

答案 0 :(得分:1)

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

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