大家好我正在创建一个Android应用程序,我希望我的应用程序支持本地化,这意味着它可以转换为多语言。 我创建了一个名为" values-zh"的新文件夹。在这个文件夹中有一个名为strings.xml的xml文件。 还有一个名为"值"的文件夹。在这个文件夹中还有一个名为strings.xml的xml文件。
在values-zh中的strings.xml内,我添加了这个:
<string name="height">高度(仪表)</string>
在values.xml中的值中,我添加了这个:
<string name="height">Height(Meters)</string>
在我的应用中,我希望用户使用微调器选择他们喜欢的语言。
在spinner.setOnItemSelectedListener方法中,我添加了以下代码:
if(position==0) // assume user selects chinese
{
// I want tvHeight changes from Height to 高度(仪表)
}
我该怎么做?有人可以帮我吗?感谢:)
答案 0 :(得分:0)
希望您在使用应用程序时期望语言发生变化。让您尝试以下实现。
作为detailed by Gunhan Sancar,创建一个这样的全局类:
n % 9 = S(n) % 9 = S(S(n)) % 9 = ...
然后,无论您需要什么,只需使用以下行进行更改即可。可能在你的语言选择听众。
public class LocaleHelper {
private static final String SELECTED_LANGUAGE = "Locale.Helper.Selected.Language";
public static void onCreate(Context context) {
String lang = getPersistedData(context, Locale.getDefault().getLanguage());
setLocale(context, lang);
}
public static void onCreate(Context context, String defaultLanguage) {
String lang = getPersistedData(context, defaultLanguage);
setLocale(context, lang);
}
public static String getLanguage(Context context) {
return getPersistedData(context, Locale.getDefault().getLanguage());
}
public static void setLocale(Context context, String language) {
persist(context, language);
updateResources(context, language);
}
private static String getPersistedData(Context context, String defaultLanguage) {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
return preferences.getString(SELECTED_LANGUAGE, defaultLanguage);
}
private static void persist(Context context, String language) {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = preferences.edit();
editor.putString(SELECTED_LANGUAGE, language);
editor.apply();
}
private static void updateResources(Context context, String language) {
Locale locale = new Locale(language);
Locale.setDefault(locale);
Resources resources = context.getResources();
Configuration configuration = resources.getConfiguration();
configuration.locale = locale;
resources.updateConfiguration(configuration, resources.getDisplayMetrics());
}
}
将语言选择存储在“共享”首选项中,并将其用于将来的更改。
希望它有所帮助。让我知道查询。