1

该错误表明,对于硬编码,您必须使用 @string/.. 仅使用 "android:text= "price" 有什么问题?

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginTop="16dp"
    android:text="PRICE" />

4

1 回答 1

1

字符串资源为您的应用程序提供带有可选文本样式和格式的文本字符串。三种类型的资源可以为您的应用程序提供字符串:

提供单个字符串的字符串 XML 资源。String Array XML 资源,提供字符串数组。数量字符串(复数) XML 资源,它携带不同的字符串以进行复数。所有字符串都能够应用一些样式标记和格式化参数。

有关更多信息,请在此处阅读

此外,最好使用字符串资源,这样如果您必须更改文本,您只需更改一个变量

因此,在您的 res 文件夹中会有另一个名为 values 的文件夹,然后访问 strings.xml 文件,在该文件中您将放置一个字符串资源以在您的应用程序中使用,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">yourAppName</string>
    <string name="hello_world">Hello world!</string>
    <string name="action_settings">Settings</string>

    <string name="price">PRICE</string>



</resources>

然后在您的 xml 文件中,您将 android:text="PRICE" 更改为 android:text = "@string/price"

于 2015-07-01T20:18:43.663 回答