我正在编写一个Android应用程序,我正在尝试允许用户在应用程序中手动选择语言。我将应用程序支持的语言放在选项菜单中。
我没有翻译应用程序的问题,这工作得很好。我的问题是,当我更改应用程序的语言(翻译)时,我在我的应用程序中的其他按钮停止工作(就像没有onClickListener)。而且我的onNewIntent()(我的overrode)方法不再适用了。任何帮助将不胜感激。
以下是我翻译应用的代码:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.lan_EN) {
//Toast.makeText(this, "English", Toast.LENGTH_LONG ).show();
Locale mLocale = new Locale("");
Locale.setDefault(mLocale);
Configuration config = getBaseContext().getResources().getConfiguration();
if (!config.locale.equals(mLocale))
{
config.locale = mLocale;
getBaseContext().getResources().updateConfiguration(config, null);
this.setContentView(R.layout.read_temp);
}
return true;
} else if (id == R.id.lan_ES) {
//Toast.makeText(this, "Spanish", Toast.LENGTH_LONG ).show();
Locale mLocale = new Locale("es");
Locale.setDefault(mLocale);
Configuration config = getBaseContext().getResources().getConfiguration();
if (!config.locale.equals(mLocale))
{
config.locale = mLocale;
getBaseContext().getResources().updateConfiguration(config, null);
this.setContentView(R.layout.read_temp);
}
return true;
}
return super.onOptionsItemSelected(item);
}
清单中的活动:
<activity
android:name=".ReadActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="@xml/tech_filter" />
</activity>
答案 0 :(得分:0)
这就是我解决这个问题的方法。在我的
InitializeIDsMethod();
我正在做的是,初始化所有按钮及其ID并在语言chnage上调用它。我在onCreate()中调用相同的方法来使代码冗余无效。
public void setlanguage(Context context, String ar) {
Locale locale = new Locale(ar);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
this.setContentView(R.layout.activity_sign_in);
InitializeIDsMethod();
}