0

好的,我一直在关注 Android 开发者网站上的课程示例,代码如下:

<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="horizontal">
<EditText android:id="@+id/edit_message"
    android:layout_weight="1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:hint="@string/edit_message" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send" />
</LinearLayout>

显然,代码应该没问题,在担心我输入错误之后,我最终直接复制了它,但控制台告诉我:

描述错误:错误:找不到与给定名称匹配的资源(在“提示”处,值为“@string/edit_message”)。

描述错误:错误:未找到与给定名称匹配的资源(在“文本”处,值为“@string/button_send”)。

现在这些值在 strings.xml 文件中定义。所以我不知道为什么我会收到这些错误。

对于任何可以在这里提供帮助的人,提前非常感谢您。

4

2 回答 2

1

在 eclipse project>clean 中尝试。有时日食会给你这样的错误。或者重启eclipse。您是否还确保在您的 strings.xml 中有类似的内容?
<string name="edit_message">Your intresting string.</string>有时,如果您使用“gui 资源添加器”,它会出错。检查你的xml。

于 2013-01-14T01:11:01.257 回答
0

确保 res 内的任何文件中都没有大写字符或下划线。此外, res 和 src 的文件中不得有任何错误 .. 之后,您必须按照前面的答案中所述清理项目。实际上,这些错误会阻止更新 R 文件,这是访问 res 文件中的资源所必需的。

于 2013-01-14T01:21:59.627 回答