以编程方式设置区域设置


139

我的应用程序支持3种(即将出现4种)语言。由于几种语言环境非常相似,因此我想为用户提供在我的应用程序中更改语言环境的选项,例如,意大利人可能更喜欢西班牙语而不是英语。

用户是否有办法在应用程序可用的语言环境中进行选择,然后更改使用的语言环境?我认为为每个Activity设置区域设置不是问题,因为这是在基类中执行的简单任务。


如果您需要稍后恢复默认语言环境的方法,或者需要包含语言列表的语言首选项,并且想要更方便地更改语言环境,这可能会有所帮助:github.com/delight-im/Android -语言
Caw

Answers:


114

对于仍在寻找此答案的人们,由于configuration.localeAPI 24已弃用该属性,因此您现在可以使用:

configuration.setLocale(locale);

考虑到此方法的minSkdVersion是API 17。

完整的示例代码:

@SuppressWarnings("deprecation")
private void setLocale(Locale locale){
    SharedPrefUtils.saveLocale(locale); // optional - Helper method to save the selected language to SharedPreferences in case you might need to attach to activity context (you will need to code this)
    Resources resources = getResources();
    Configuration configuration = resources.getConfiguration();
    DisplayMetrics displayMetrics = resources.getDisplayMetrics();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){
        configuration.setLocale(locale);
    } else{
        configuration.locale=locale;
    }
    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.N){
        getApplicationContext().createConfigurationContext(configuration);
    } else {
        resources.updateConfiguration(configuration,displayMetrics);
    }
}

别忘了,如果您通过运行中的活动来更改语言环境,则需要重新启动它才能使更改生效。

编辑2018年5月11日

从@CookieMonster的帖子开始,您可能在将语言环境更改保留在更高版本的API中时遇到问题。如果是这样,请将以下代码添加到基本活动中,以便在每次创建活动时更新上下文区域设置:

@Override
protected void attachBaseContext(Context base) {
     super.attachBaseContext(updateBaseContextLocale(base));
}

private Context updateBaseContextLocale(Context context) {
    String language = SharedPrefUtils.getSavedLanguage(); // Helper method to get saved language from SharedPreferences
    Locale locale = new Locale(language);
    Locale.setDefault(locale);

    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.N) {
        return updateResourcesLocale(context, locale);
    }

    return updateResourcesLocaleLegacy(context, locale);
}

@TargetApi(Build.VERSION_CODES.N_MR1)
private Context updateResourcesLocale(Context context, Locale locale) {
    Configuration configuration = new Configuration(context.getResources().getConfiguration())
    configuration.setLocale(locale);
    return context.createConfigurationContext(configuration);
}

@SuppressWarnings("deprecation")
private Context updateResourcesLocaleLegacy(Context context, Locale locale) {
    Resources resources = context.getResources();
    Configuration configuration = resources.getConfiguration();
    configuration.locale = locale;
    resources.updateConfiguration(configuration, resources.getDisplayMetrics());
    return context;
}

如果使用此设置,请在设置语言环境时不要忘记将语言保存到SharedPreferences setLocate(locale)

编辑2020年4月7日

您可能在Android 6和7中遇到问题,这是由于在处理夜间模式时androidx库中的问题引起的。为此,您还需要applyOverrideConfiguration在基本活动中覆盖并更新配置的语言环境,以防创建新的语言环境。

样例代码:

@Override
public void applyOverrideConfiguration(Configuration overrideConfiguration) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP && Build.VERSION.SDK_INT <= Build.VERSION_CODES.N_MR1) {
        // update overrideConfiguration with your locale  
        setLocale(overrideConfiguration) // you will need to implement this
    }
    super.applyOverrideConfiguration(overrideConfiguration);
} 

2
这适用于活动,但是有没有办法更新应用程序上下文?
alekop

2
从更改androidx.appcompat:appcompat:版本后1.0.2,以1.1.0不工作在Android 7,但在Android 9.工作
贝克

4
对我来说,同样的问题 1.1.0 androidx
Alexander Dadukin

2
对我来说同样的问题。在我更改为androidx.appcompat:appcompat:1.1.0'后
Rahul Jidge '19

4
appcompat:1.1.0可以解决的问题appcompat:1.2.0-alpha02Set<Locale> set = new LinkedHashSet<>(); // bring the target locale to the front of the list set.add(locale); LocaleList all = LocaleList.getDefault(); for (int i = 0; i < all.size(); i++) { // append other locales supported by the user set.add(all.get(i)); } Locale[] locales = set.toArray(new Locale[0]); configuration.setLocales(new LocaleList(locales));内部代码@TargetApi(Build.VERSION_CODES.N) updateResourcesLocale()
Vojtech Pohl

178

希望这个帮助(在onResume中):

Locale locale = new Locale("ru");
Locale.setDefault(locale);
Configuration config = getBaseContext().getResources().getConfiguration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
      getBaseContext().getResources().getDisplayMetrics());

2
因此,必须为每个活动设置此设置吗?
Tobias 2012年

6
1.必须使用getBaseContext()还是最好使用应用程序contex?2.在每个活动中应调用此代码吗?谢谢。
保罗

10
我将此代码放入启动器Activity的onCreate()中(并且无其他地方),并惊讶地发现该语言环境适用于整个应用程序。这是在定位为4.3且minSDK为14(ICS)的应用程序中。
IAmKale 2013年

8
无需创建新的Configuration对象。您可以使用当前配置并进行更新:getResources()。getConfiguration()
jmart 2015年

1
不要使用新的Configuration();,它会更改textAppearance,fontSize
Jemshit Iskenderov

22

使用Android OS N及更高版本的设备以编程方式设置区域设置时遇到问题。对我来说,解决方案是在基本活动中编写以下代码:

(如果您没有基本活动,则应在所有活动中进行这些更改)

@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(updateBaseContextLocale(base));
}

private Context updateBaseContextLocale(Context context) {
    String language = SharedPref.getInstance().getSavedLanguage();
    Locale locale = new Locale(language);
    Locale.setDefault(locale);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        return updateResourcesLocale(context, locale);
    }

    return updateResourcesLocaleLegacy(context, locale);
}

@TargetApi(Build.VERSION_CODES.N)
private Context updateResourcesLocale(Context context, Locale locale) {
    Configuration configuration = context.getResources().getConfiguration();
    configuration.setLocale(locale);
    return context.createConfigurationContext(configuration);
}

@SuppressWarnings("deprecation")
private Context updateResourcesLocaleLegacy(Context context, Locale locale) {
    Resources resources = context.getResources();
    Configuration configuration = resources.getConfiguration();
    configuration.locale = locale;
    resources.updateConfiguration(configuration, resources.getDisplayMetrics());
    return context;
}

请注意,在这里打电话是不够的

createConfigurationContext(configuration)

您还需要获取此方法返回的上下文,然后在attachBaseContext方法中设置此上下文。


这是最简单且可行的解决方案!这应该是公认的答案。
普拉萨德·帕瓦尔

3
这段代码可在高于7的android系统上正常工作,但在低于N的版本中则无法正常工作。你有什么解决办法?
马汀·阿什蒂亚尼

不确定,因为它对我有用。您是否想将实施情况发送给我,以便让我看看?
CookieMonster '18年

2
在Android N下的版本中不起作用,因为必须在onCreate()而不是attachBaseContext()中调用resources.updateConfiguration
Chandler

@钱德勒是正确的。对于Android的6-,卡莱的updateBaseContextLocale在方法onCreate你的父母/基地活动。
Azizjon Kholmatov

22

由于当前解决此问题的方法尚无答案,因此,我尝试提供完整解决方案的说明。如果有什么遗漏或可以做得更好,请发表评论。

一般信息

首先,存在一些想要解决该问题的库,但它们似乎都已过时或缺少某些功能:

此外,我认为编写库可能不是解决此问题的好/容易方法,因为要做的事情不多,而且要做的是更改现有代码而不是使用完全脱钩的方法。因此,我编写了以下应完整的说明。

我的解决方案主要基于https://github.com/gunhansancar/ChangeLanguageExample(已由localhost链接到)。这是我发现的最佳代码。一些说明:

  • 根据需要,它提供了不同的实现来更改Android N(及更高版本)及更低版本的语言环境
  • 它使用updateViews()每个Activity中的方法在更改语言环境后手动更新所有字符串(使用通常的方法getString(id))这在下面显示的方法中是不必要的
  • 它仅支持语言,不支持完整的语言环境(还包括地区(国家/地区)和变体代码)

我对其进行了一些更改,将保留所选语言环境的部分解耦(因为可能要单独执行此操作,如下所示)。

该解决方案包括以下两个步骤:

  • 永久更改应用要使用的语言环境
  • 使应用使用自定义区域设置,而无需重新启动

步骤1:变更地区

使用LocaleHelper基于gunhansancar的LocaleHelper的类

  • 使用可用语言添加一个(ListPreference在以后添加PreferenceFragment语言时必须维护)
import android.annotation.TargetApi;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build;
import android.preference.PreferenceManager;

import java.util.Locale;

import mypackage.SettingsFragment;

/**
 * Manages setting of the app's locale.
 */
public class LocaleHelper {

    public static Context onAttach(Context context) {
        String locale = getPersistedLocale(context);
        return setLocale(context, locale);
    }

    public static String getPersistedLocale(Context context) {
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        return preferences.getString(SettingsFragment.KEY_PREF_LANGUAGE, "");
    }

    /**
     * Set the app's locale to the one specified by the given String.
     *
     * @param context
     * @param localeSpec a locale specification as used for Android resources (NOTE: does not
     *                   support country and variant codes so far); the special string "system" sets
     *                   the locale to the locale specified in system settings
     * @return
     */
    public static Context setLocale(Context context, String localeSpec) {
        Locale locale;
        if (localeSpec.equals("system")) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                locale = Resources.getSystem().getConfiguration().getLocales().get(0);
            } else {
                //noinspection deprecation
                locale = Resources.getSystem().getConfiguration().locale;
            }
        } else {
            locale = new Locale(localeSpec);
        }
        Locale.setDefault(locale);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            return updateResources(context, locale);
        } else {
            return updateResourcesLegacy(context, locale);
        }
    }

    @TargetApi(Build.VERSION_CODES.N)
    private static Context updateResources(Context context, Locale locale) {
        Configuration configuration = context.getResources().getConfiguration();
        configuration.setLocale(locale);
        configuration.setLayoutDirection(locale);

        return context.createConfigurationContext(configuration);
    }

    @SuppressWarnings("deprecation")
    private static Context updateResourcesLegacy(Context context, Locale locale) {
        Resources resources = context.getResources();

        Configuration configuration = resources.getConfiguration();
        configuration.locale = locale;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            configuration.setLayoutDirection(locale);
        }

        resources.updateConfiguration(configuration, resources.getDisplayMetrics());

        return context;
    }
}

创建SettingsFragment如下所示的内容:

import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import android.preference.PreferenceManager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import mypackage.LocaleHelper;
import mypackage.R;

/**
 * Fragment containing the app's main settings.
 */
public class SettingsFragment extends PreferenceFragment implements SharedPreferences.OnSharedPreferenceChangeListener {
    public static final String KEY_PREF_LANGUAGE = "pref_key_language";

    public SettingsFragment() {
        // Required empty public constructor
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.preferences);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_settings, container, false);
        return view;
    }

    @Override
    public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
        switch (key) {
            case KEY_PREF_LANGUAGE:
                LocaleHelper.setLocale(getContext(), PreferenceManager.getDefaultSharedPreferences(getContext()).getString(key, ""));
                getActivity().recreate(); // necessary here because this Activity is currently running and thus a recreate() in onResume() would be too late
                break;
        }
    }

    @Override
    public void onResume() {
        super.onResume();
        // documentation requires that a reference to the listener is kept as long as it may be called, which is the case as it can only be called from this Fragment
        getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener(this);
    }

    @Override
    public void onPause() {
        super.onPause();
        getPreferenceScreen().getSharedPreferences().unregisterOnSharedPreferenceChangeListener(this);
    }
}

locales.xml通过以下方式创建一个列出所有可用语言环境的资源(语言环境代码列表):

<!-- Lists available locales used for setting the locale manually.
     For now only language codes (locale codes without country and variant) are supported.
     Has to be in sync with "settings_language_values" in strings.xml (the entries must correspond).
  -->
<resources>
    <string name="system_locale" translatable="false">system</string>
    <string name="default_locale" translatable="false"></string>
    <string-array name="locales">
        <item>@string/system_locale</item> <!-- system setting -->
        <item>@string/default_locale</item> <!-- default locale -->
        <item>de</item>
    </string-array>
</resources>

在你PreferenceScreen可以使用下面的部分,让用户选择可用的语言:

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory
        android:title="@string/preferences_category_general">
        <ListPreference
            android:key="pref_key_language"
            android:title="@string/preferences_language"
            android:dialogTitle="@string/preferences_language"
            android:entries="@array/settings_language_values"
            android:entryValues="@array/locales"
            android:defaultValue="@string/system_locale"
            android:summary="%s">
        </ListPreference>
    </PreferenceCategory>
</PreferenceScreen>

它使用来自以下字符串strings.xml

<string name="preferences_category_general">General</string>
<string name="preferences_language">Language</string>
<!-- NOTE: Has to correspond to array "locales" in locales.xml (elements in same orderwith) -->
<string-array name="settings_language_values">
    <item>Default (System setting)</item>
    <item>English</item>
    <item>German</item>
</string-array>

步骤2:使应用使用自定义区域设置

现在,将每个活动设置为使用自定义语言环境集。最简单的方法是使用以下代码(其中重要的代码位于attachBaseContext(Context base)和中onResume())为所有活动提供一个通用的基类:

import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;

import mypackage.LocaleHelper;
import mypackage.R;

/**
 * {@link AppCompatActivity} with main menu in the action bar. Automatically recreates
 * the activity when the locale has changed.
 */
public class MenuAppCompatActivity extends AppCompatActivity {
    private String initialLocale;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        initialLocale = LocaleHelper.getPersistedLocale(this);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.menu_settings:
                Intent intent = new Intent(this, SettingsActivity.class);
                startActivity(intent);
                return true;
            default:
                return super.onOptionsItemSelected(item);
        }
    }

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(LocaleHelper.onAttach(base));
    }

    @Override
    protected void onResume() {
        super.onResume();
        if (initialLocale != null && !initialLocale.equals(LocaleHelper.getPersistedLocale(this))) {
            recreate();
        }
    }
}

它的作用是

  • 覆盖attachBaseContext(Context base)以前使用的语言环境LocaleHelper
  • 检测语言环境的变化并重新创建Activity以更新其字符串

有关此解决方案的注意事项

  • 重新创建活动不会更新ActionBar的标题(如此处已观察到:https : //github.com/gunhansancar/ChangeLanguageExample/issues/1)。

    • 这可以通过简单地setTitle(R.string.mytitle)onCreate()每种活动的方法中实现。
  • 它使用户可以选择系统的默认语言环境以及应用程序的默认语言环境(可以命名,在本例中为“英语”)。

  • fr-rCA到目前为止,仅支持语言代码,不支持地区(国家/地区)和变体代码(如)。为了支持完整的语言环境规范,可以使用类似于Android-Languages库中的解析器(它支持区域,但不支持变体代码)。

    • 如果有人发现或编写了不错的解析器,请添加注释,以便将其包含在解决方案中。

1
出色,但噩梦之王
奥德斯

1
天哪,我的应用程序已经太复杂了,这种方法将来会成为噩梦。
乔什

@Josh您能进一步解释一下吗?实际上,只需将几行添加到您使用的每个Activity基类。我看到不可能对所有活动都使用相同的基类,但是更大的项目也应该能够与之相处。面向方面的编程可以帮忙,但是组成(移动从代码attachBaseContext(Context base)onResume()一个单独的类)可以做的伎俩。然后,您要做的就是在每个活动基类中声明一个对象,并委派这两个调用。
user905686 '18

如果用户更改其语言环境,是否也可以更改所有先前活动页面的语言环境?
Raju yourPepe

这是此问题上的最佳答案。谢谢兄弟,它的工作原理
Alok Gupta

16
@SuppressWarnings("deprecation")
public static void forceLocale(Context context, String localeCode) {
    String localeCodeLowerCase = localeCode.toLowerCase();

    Resources resources = context.getApplicationContext().getResources();
    Configuration overrideConfiguration = resources.getConfiguration();
    Locale overrideLocale = new Locale(localeCodeLowerCase);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
        overrideConfiguration.setLocale(overrideLocale);
    } else {
        overrideConfiguration.locale = overrideLocale;
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        context.getApplicationContext().createConfigurationContext(overrideConfiguration);
    } else {
        resources.updateConfiguration(overrideConfiguration, null);
    }
}

只需使用此辅助方法即可强制使用特定的语言环境。

UDPATE 2017年8月22日。更好地使用此方法


4

使用以下方法添加帮助程序类:

public class LanguageHelper {
    public static final void setAppLocale(String language, Activity activity) {

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            Resources resources = activity.getResources();
            Configuration configuration = resources.getConfiguration();
            configuration.setLocale(new Locale(language));
            activity.getApplicationContext().createConfigurationContext(configuration);
        } else {
            Locale locale = new Locale(language);
            Locale.setDefault(locale);
            Configuration config = activity.getResources().getConfiguration();
            config.locale = locale;
            activity.getResources().updateConfiguration(config,
                    activity.getResources().getDisplayMetrics());
        }

    }
}

并在您的启动活动中调用它,例如MainActivity.java

public void onCreate(Bundle savedInstanceState) {
    ...
    LanguageHelper.setAppLocale("fa", this);
    ...
}

3

简单容易

Locale locale = new Locale("en", "US");
Resources res = getResources();
DisplayMetrics dm = res.getDisplayMetrics();
Configuration conf = res.getConfiguration();
conf.locale = locale;
res.updateConfiguration(conf, dm);

其中“ en”是语言代码,“ US”是国家代码。


如我的帖子所述,conf.locale=locale;不推荐使用,并且也是updateConfiguration
里卡多

非常简单,不太复杂:)
Ramkesh Yadav

2

适用于API16到API28只需将此方法放在以下位置:

    Context newContext = context;

        Locale locale = new Locale(languageCode);
        Locale.setDefault(locale);

        Resources resources = context.getResources();
        Configuration config = new Configuration(resources.getConfiguration());

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {

        config.setLocale(locale);
                newContext = context.createConfigurationContext(config);

        } else {

        config.locale = locale;
                resources.updateConfiguration(config, resources.getDisplayMetrics());
        }

    return newContext;
}

使用以下命令在所有活动中插入此代码:

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(localeUpdateResources(base, "<-- language code -->"));
    }

或在需要新上下文的片段,适配器等上调用localeUpdateResources。

鸣谢:Yaroslav Berezanskyi


2

有一种超级简单的方法。

在BaseActivity,Activity或Fragment中重写attachBaseContext

 override fun attachBaseContext(context: Context) {
    super.attachBaseContext(context.changeLocale("tr"))
}

延期

fun Context.changeLocale(language:String): Context {
    val locale = Locale(language)
    Locale.setDefault(locale)
    val config = this.resources.configuration
    config.setLocale(locale)
    return createConfigurationContext(config)
}

2

我发现该androidx.appcompat:appcompat:1.1.0错误也可以通过简单地调用getResources()来解决applyOverrideConfiguration()

@Override public void
applyOverrideConfiguration(Configuration cfgOverride)
{
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP &&
      Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
    // add this to fix androidx.appcompat:appcompat 1.1.0 bug
    // which happens on Android 6.x ~ 7.x
    getResources();
  }

  super.applyOverrideConfiguration(cfgOverride);
}

1
 /**
 * Requests the system to update the list of system locales.
 * Note that the system looks halted for a while during the Locale migration,
 * so the caller need to take care of it.
 */
public static void updateLocales(LocaleList locales) {
    try {
        final IActivityManager am = ActivityManager.getService();
        final Configuration config = am.getConfiguration();

        config.setLocales(locales);
        config.userSetLocale = true;

        am.updatePersistentConfiguration(config);
    } catch (RemoteException e) {
        // Intentionally left blank
    }
}

1

对于那些尝试了一切但又没有奏效的人。请检查如果您使用进行设置darkmodeAppCompatDelegate.setDefaultNightMode并且系统不是黑暗的,那么Configuration.setLocaleAndorid 7.0以上版本将无法正常工作。

在您的每个活动中添加以下代码以解决此问题:

override fun applyOverrideConfiguration(overrideConfiguration: Configuration?) {
  if (overrideConfiguration != null) {
    val uiMode = overrideConfiguration.uiMode
    overrideConfiguration.setTo(baseContext.resources.configuration)
    overrideConfiguration.uiMode = uiMode
  }
  super.applyOverrideConfiguration(overrideConfiguration)
}

-1

将此代码放入您的活动中

 if (id==R.id.uz)
    {
        LocaleHelper.setLocale(MainActivity.this, mLanguageCode);

        //It is required to recreate the activity to reflect the change in UI.
        recreate();
        return true;
    }
    if (id == R.id.ru) {

        LocaleHelper.setLocale(MainActivity.this, mLanguageCode);

        //It is required to recreate the activity to reflect the change in UI.
        recreate();
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.