本地化应用名称

时间:2013-01-22 09:59:23

标签: android string localization

我想本地化(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>

String 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);
}

2 个答案:

答案 0 :(得分:7)

这将在本地更改应用程序的区域设置而不是移动设备。并且Manifest根据设备区域设置选择应用程序名称的值,而不是应用程序区域设置。 因此,您需要根据移动设备的设置进行设置。

答案 1 :(得分:0)

@skygeek同意 只是根据android网站上的android本地化过程启发主题:

  

资源是文本字符串,布局,声音,图形和其他任何内容   您的Android应用程序需要的静态数据。应用程序可以   包括多组资源,每组资源都为不同的资源定制   设备配置。当用户运行应用程序时,Android   自动选择并加载最匹配的资源   设备的区域设置。

详细解释可以在android网站link找到。