カテゴリー:
警告
閲覧数:547 配信日:2014-03-29 23:48
警告メッセージ
[I18N] Hardcoded string "保存", should use @string resource
対応
対象ファイル
▼/res/layout/test1_1.xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="保存"
/>
↓
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/save"
/>
▼/res/values/strings.xml
<resources>
<string name="hello">Hello World, SetContentView1_1Activity!</string>
<string name="app_name">SetContentView1_1</string>
</resources>
↓
<resources>
<string name="hello">Hello World, SetContentView1_1Activity!</string>
<string name="app_name">SetContentView1_1</string>
<string name="save">保存</string>
</resources>