1

私の Android アプリケーションでは、ローカリゼーションを実装する必要があります。すべての言語 (中国語、フランス語、日本、ウルドゥー語など) に同じ文字列ファイルを提供することはできますか? そうでない場合、さまざまな言語の文字列の値フォルダー名を作成するにはどうすればよいですか?

4

1 に答える 1

1

res/values/strings.xml is used at the default if a specific language is not found. It should contain a default value for every string in your app. See the 'Why Default Resources Are Important' section of the localization guide. In fact, the whole document is good guide to localizing your app.

于 2013-01-16T03:40:02.597 に答える