在android中检索字符串资源时明确指定语言?

时间:2015-03-05 13:54:07

标签: java android android-resources

如何使用与用户当前语言环境语言不同的语言访问字符串资源。

String string = context.getString(R.string.string_id, "en");

2 个答案:

答案 0 :(得分:1)

您可以设置应用配置。使用此:

Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
context.getResources().updateConfiguration(config, null);

然后你可以使用:

String string = context.getResources().getString(R.string.string_id);
祝你好运。

答案 1 :(得分:0)

通常在加载活动布局之前修改语言。 此外,你必须创建一个" value-en"克隆"值"的文件夹一个在res。在这个文件夹中,您可以使用相同的名称放置相同的字符串和资源,但会将其翻译成另一种语言。当您将这些克隆文件夹创建到" res"在确定活动的语言后,您可以以经典的方式调用资源。它看起来像这样:

try{  
    Configuration c = new Configuration(getResources().getConfiguration());
    String lingua = readFileAsString("/sdcard/Lingua.txt");
    if(lingua.equals("")){ 
        c.locale = Locale.ITALIAN;
    }else if(lingua.equals("ITALIANO")){
        c.locale = Locale.ITALIAN;
    }else if(lingua.equals("ENGLISH")){ 
        c.locale = Locale.US;
    }
    getResources().updateConfiguration(c, getResources().getDisplayMetrics());

}catch(Exception e){ }

setContentView(R.layout.main);
opzioni[0] = getResources().getString(R.string.home);
opzioni[1] = getResources().getString(R.string.indietro);
opzioni[2] = getResources().getString(R.string.disattiva_audio);
opzioni[3] = getResources().getString(R.string.chiudi);
opzioni[4] = getResources().getString(R.string.ripeti);

在这个例子中,我将文本文件中的laguage恢复为sdcard,在为布局收费之前,我设置了语言。正如您所看到的那样,getResources()并没有指定语言......但它会转到带有后缀的文件夹克隆,该后缀解释了正确的语言。