好的,我一直在关注 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 文件中定义。所以我不知道为什么我会收到这些错误。
对于任何可以在这里提供帮助的人,提前非常感谢您。