我想本地化(values-ru)字符串值:textview和app_name。應用僅本地化textview(「Приветмир」),但app_name仍然相同(「本地化」)。 app_name本地化有什麼問題?本地化應用程序名稱
應用程序標籤名稱& Manifest中的活動標籤名稱引用相應的字符串值。
清單:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.local.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
字符串RES /值儒:
<resources>
<string name="hello_world">Привет мир</string>
<string name="app_name">Локализация</string>
</resources>
的Java:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String languageToLoad = "ru";
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
setContentView(R.layout.activity_main);
}
感謝您的快速回復 – Andrew
這是一個可靠的答案。但我相信,如果你告訴如何克服這種情況,它將會幫助社區更多。 – Killer
我們是否需要爲每個活動使用setTitle ... – Killer