gpt4 book ai didi

java - 安卓 "Cannot resolve symbol ' @id/myLabel"

转载 作者:行者123 更新时间:2023-12-04 23:46:13 26 4
gpt4 key购买 nike

我收到一条错误消息“Cannot resolve symbol '@id/myLabel '”。
以下元素也有同样的错误:

"Cannot resolve symbol '@id/numberStudents'"
"Cannot resolve symbol '@id/accept'"

请帮我解决这个问题。
我的 xml 示例粘贴在下面。

谢谢,
阿比拉什·卡达拉。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/myLabel"
android:text="Name of student:"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<EditText
android:id="@+id/numberStudents"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/myLabel"
/>
<Button
android:id="@+id/accept"
android:text="Accept"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/numberStudents"
android:layout_alignParentRight="true"
android:layout_marginLeft="10px"
/>
<Button
android:id="@+id/cancel"
android:text="Cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/accept"
android:layout_alignTop="@id/accept"
/>

</RelativeLayout>

最佳答案

Rebuild project对我有用。

关于java - 安卓 "Cannot resolve symbol ' @id/myLabel",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37112967/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com