如何更改应用程序的语言?

时间:2011-06-04 09:58:23

标签: android

在我的应用程序中,我可以选择语言。

有三种语言:英语,德语和西班牙。当我选择一个选项时,应该更改整个应用程序语言。

我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:21)

你的意思是你想要使用另一种语言而不是手机中的默认语言吗?我在一个应用程序中有这个,这就是我必须要做的。

将此添加到AndroidManifest.xml

中的活动声明中
<activity
    android:name=".ui.SomeActivity"
    android:configChanges="locale"
    :
    :
</activity>

然后在您的活动中从onCreate调用这样的方法:

public static void setLanguage(Context context, String languageToLoad) {
    Log.d(TAG, "setting language");
    Locale locale = new Locale(languageToLoad); //e.g "sv"
    Locale systemLocale = SystemLocale.getInstance().getCurrentLocale(context);
    if (systemLocale != null && systemLocale.equals(locale)) {
       Log.d(TAG, "Already correct language set");
       return;
    }
    Locale.setDefault(locale);
    android.content.res.Configuration config = new android.content.res.Configuration();
    config.locale = locale;
    context.getResources().updateConfiguration(config, context.getResources().getDisplayMetrics());
    Log.d(TAG, "Language set");
}

答案 1 :(得分:0)

您只需根据语言添加值文件夹即可。 例如,我添加了3种语言:英语,阿拉伯语和印地语。 在res文件夹中为阿拉伯语创建values-ar,为hindi创建values-hi以保存应用程序中使用的所有字符串。 现在我有一份语言列表视图。因此,当用户点击其中一种语言时,应用程序的语言将会改变,手机语言将保持不变。 这是代码..

  listview.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
            // When clicked, show a toast with the TextView text
            String language = ((TextView) view).getText().toString();
            if (language.equals("English")) {
                Locale locale = new Locale("en");
                Locale.setDefault(locale);
                Configuration config = new Configuration();
                config.locale = locale;
                getBaseContext().getResources()
                        .updateConfiguration(
                                config,
                                getBaseContext().getResources()
                                        .getDisplayMetrics());
                Toast.makeText(ChangeLanguage.this, "Locale in English",
                        Toast.LENGTH_LONG).show();

            } else if (language.equals("Arabic")) {

                Locale locale = new Locale("ar");
                Locale.setDefault(locale);
                Configuration config = new Configuration();
                config.locale = locale;
                getBaseContext().getResources()
                        .updateConfiguration(
                                config,
                                getBaseContext().getResources()
                                        .getDisplayMetrics());
                Toast.makeText(ChangeLanguage.this, "Locale in Arabic",
                        Toast.LENGTH_LONG).show();
            }else if (language.equals("Hindi")) {

                Locale locale = new Locale("hi");
                Locale.setDefault(locale);
                Configuration config = new Configuration();
                config.locale = locale;
                getBaseContext().getResources()
                        .updateConfiguration(
                                config,
                                getBaseContext().getResources()
                                        .getDisplayMetrics());
                Toast.makeText(ChangeLanguage.this, "Locale in Hindi",
                        Toast.LENGTH_LONG).show();
            } else {
                Toast.makeText(ChangeLanguage.this,
                        "Locale in not changed!", Toast.LENGTH_LONG).show();
            }
            /*
             * Toast.makeText(getApplicationContext(), language,
             * Toast.LENGTH_SHORT) .show();
             */

            GetterSetter.getInstance().setLanguage(changelanguage);
            startActivity(new Intent(ChangeLanguage.this,
                    MainSettings.class));
            main.tabhost.setCurrentTab(3);
        }
    });