如何从Android中的不同语言环境中获取字符串?

che*_*ang 62 android locale android-resources

因此,无论设备/应用程序的当前语言环境设置如何,我都希望在多个语言环境中获取String的值.我该怎么办?

基本上我需要的是一个功能getString(int id, String locale)而不是getString(int id)

我怎么能这样做?

谢谢

Ted*_*opp 128

注意如果您的最低API为17+,请直接转到此答案的底部.否则,请继续阅读......

如果您有不同语言环境的各种res文件夹,则可以执行以下操作:

Configuration conf = getResources().getConfiguration();
conf.locale = new Locale("pl");
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
Resources resources = new Resources(getAssets(), metrics, conf);
String str = resources.getString(id);
Run Code Online (Sandbox Code Playgroud)

或者,您可以使用@jyotiprakash指向的方法重新启动您的活动.

注意调用这样的Resources构造函数会在Android内部更改某些内容.您必须使用原始语言环境调用构造函数,以便以原来的方式恢复原状.

编辑从特定区域设置检索资源的略有不同(并且稍微清晰)的配方是:

Resources res = getResources();
Configuration conf = res.getConfiguration();
Locale savedLocale = conf.locale;
conf.locale = desiredLocale; // whatever you want here
res.updateConfiguration(conf, null); // second arg null means don't change

// retrieve resources from desired locale
String str = res.getString(id);

// restore original locale
conf.locale = savedLocale;
res.updateConfiguration(conf, null);
Run Code Online (Sandbox Code Playgroud)

从API级别17开始,您应该使用conf.setLocale()而不是直接设置conf.locale.如果您正好在从右到左和从左到右的区域设置之间切换,这将正确更新配置的布局方向.(布局方向介绍于17)

创建一个新Configuration对象没有意义(正如@Nulano在评论中建议的那样),因为调用updateConfiguration将改变通过调用获得的原始配置res.getConfiguration().

getString(int id, String locale)如果您要为区域设置加载多个字符串资源,我会毫不犹豫地将其捆绑到一个方法中.更改语言环境(使用任一配方)要求框架执行大量重新绑定所有资源的工作.更新区域设置一次,检索所需的所有内容,然后重新设置区域设置要好得多.

编辑(感谢@Mygod):

如果您的最低API级别是17+,那么有一个更好的方法,如另一个线程的答案所示.例如,您可以创建多个Resource对象,每个对象用于您需要的每个区域设置:

@NonNull Resources getLocalizedResources(Context context, Locale desiredLocale) {
    Configuration conf = context.getResources().getConfiguration();
    conf = new Configuration(conf);
    conf.setLocale(desiredLocale);
    Context localizedContext = context.createConfigurationContext(conf);
    return localizedContext.getResources();
}
Run Code Online (Sandbox Code Playgroud)

然后只需Resource从此方法返回的本地化对象中检索您喜欢的资源.一旦检索到资源,就无需重置任何内容.


Joh*_*145 22

以下是Ted Hopp描述的方法的组合版本.这样,该代码适用于任何Android版本:

public static String getLocaleStringResource(Locale requestedLocale, int resourceId, Context context) {
    String result;
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { // use latest api
        Configuration config = new Configuration(context.getResources().getConfiguration());
        config.setLocale(requestedLocale);
        result = context.createConfigurationContext(config).getText(resourceId).toString();
    }
    else { // support older android versions
        Resources resources = context.getResources();
        Configuration conf = resources.getConfiguration();
        Locale savedLocale = conf.locale;
        conf.locale = requestedLocale;
        resources.updateConfiguration(conf, null);

        // retrieve resources from desired locale
        result = resources.getString(resourceId);

        // restore original locale
        conf.locale = savedLocale;
        resources.updateConfiguration(conf, null);
    }

    return result;
}
Run Code Online (Sandbox Code Playgroud)

用法示例:

String englishName = getLocaleStringResource(new Locale("en"), R.string.name, context);
Run Code Online (Sandbox Code Playgroud)

注意

正如在原始答案中已经说明的那样,用单个配置更改和多个resources.getString()调用替换上述代码的多个调用可能更有效.


Amr*_*iat 5

基于上面的答案,这很棒但有点复杂。尝试这个简单的功能:

public String getResStringLanguage(int id, String lang){
    //Get default locale to back it
    Resources res = getResources();
    Configuration conf = res.getConfiguration();
    Locale savedLocale = conf.locale;
    //Retrieve resources from desired locale
    Configuration confAr = getResources().getConfiguration();
    confAr.locale = new Locale(lang);
    DisplayMetrics metrics = new DisplayMetrics();
    Resources resources = new Resources(getAssets(), metrics, confAr);
    //Get string which you want
    String string = resources.getString(id);
    //Restore default locale
    conf.locale = savedLocale;
    res.updateConfiguration(conf, null);
    //return the string that you want
    return string;
}
Run Code Online (Sandbox Code Playgroud)

然后简单地调用它:String str = getResStringLanguage(R.string.any_string, "en");

快乐的代码:)