-1

我在 String.xml 中指定了字符串值

<string name="complaint_fragment_type_label">Type</string>

并在布局文件中

<TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:maxLines="1"
            android:text="@string/complaint_fragment_type_label"
            android:textSize="17sp"
            android:textStyle="bold" />

但我在 TextView 中获取字符串“Type”时出错。在文本视图中获取字符串的解决方案可能是什么?

4

2 回答 2

0

问题是因为 string.xml 不是值资源文件。您可以通过右键单击值目录然后选择新建来创建值资源文件,您将获得该选项。然后只需将其命名为字符串并在<string>标签内给出<resources>标签,你就完成了

于 2017-02-27T06:17:04.927 回答
0
<TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:maxLines="1"
            android:text="Complaint"
            android:textSize="17sp"
            android:textStyle="bold" />

尝试这个...

于 2017-02-27T06:32:48.613 回答