我想本地化(values-ru)字符串值:textview 和 app_name。应用程序仅本地化 textview ("Привет мир") 但 app_name 仍然相同 ("Localization")。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/values-ru:
<resources>
<string name="hello_world">Привет мир</string>
<string name="app_name">Локализация</string>
</resources>
爪哇:
@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);
}