构建简单的UI课程示例

时间:2013-01-14 01:06:39

标签: android

好的,我一直在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')。

描述 错误:错误:找不到与给定名称匹配的资源(在'text'处,值为'@ string / button_send')。

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

任何能够提供帮助的人都要提前感谢你们。

2 个答案:

答案 0 :(得分:1)

尝试eclipse项目&gt;干净。有时eclipse会给你这样的错误。或者重启eclipse。您是否也确定在strings.xml中有这样的内容?
<string name="edit_message">Your intresting string.</string>有时如果您使用'gui resource adder'它会出错。检查你的xml。

答案 1 :(得分:0)

确保res中的任何文件中没有大写字母或下划线。 另外,res和src文件中一定不能有任何错误。 之后,您必须按照上一个答案中的说明清理项目。 实际上,这些错误会阻止更新R文件,这是访问res文件中的资源所必需的。