当我查看此文件的graphical.layout
时,有问题<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="this is main text" />
</LinearLayout>
当我查看此视图的图形布局时,此xml文件会显示此警告 [I18N]硬编码字符串“这是主文本”,应该使用@string资源 但我不想声明字符串valiable我想显示这个“这是主要文本”而不声明字符串
答案 0 :(得分:1)
关于'应该使用@string资源'的警告只是提醒一下,特定于语言环境的信息应放在'资源包'中(例如/res/values/strings.xml),以便可以提供标签和其他文本用不同的语言,无需为每种语言重新编码和重新编译整个应用程序。
如果你只是测试一下,你可以放心地忽略那个警告,但是养成在外部文件中引用字符串作为资源而不是直接在应用程序本身中硬编码的习惯是个好主意。
将字符串硬编码到布局文件中并不是一种好习惯。您应该将它们添加到字符串资源文件中,然后从布局中引用它们。
答案 1 :(得分:0)
You must declare your text using `@string` resource that
is a good programming format.You should prefer using
`string.xml` in value folder in res folder if you want
to use texts.
答案 2 :(得分:0)
如果要禁止使用特定警告 工具:忽略=&#34; HardcodedText&#34;