gpt4 book ai didi

安卓工作室 : Gradle: error: cannot find symbol variable

转载 作者:IT王子 更新时间:2023-10-28 23:40:25 25 4
gpt4 key购买 nike

我正在开发我的应用程序,一切正常,直到我尝试在 java 中显示图像。

我运行了一次应用程序,它运行正常,显示了图片。之后它要求我导入一些库并导入它们。之后,我的 Activity 出现错误。

类似的错误:

Gradle: error: cannot find symbol variable activity_main
Gradle: error: cannot find symbol variable button1
Gradle: error: cannot find symbol variable button2
Gradle: error: cannot find symbol variable textView
Gradle: error: cannot find symbol variable secondActivity

在 MainActivity 我已经导入了这些库:

import android.R;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.Button;

在 secondActivity 中:

import android.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

有谁知道如何解决这个问题?

编辑:我删除了 import android.R; 现在它可以正常工作了。

最佳答案

您不应该导入 android.R。这应该是自动生成和识别的。 This question如果您在删除导入后遇到有关 R 的错误,则包含许多有用的提示。

删除导入后的一些基本步骤,如果出现这些错误:

  • 清理您的构建,然后重新构建
  • 确保您的 XML 文件中没有错误或拼写错误
  • 确保您的资源名称由 [a-z0-9.] 组成。出于某种原因,不允许使用大写字母或符号。
  • 执行 Gradle 同步(通过工具 > Android > 将项目与 Gradle 文件同步)

关于安卓工作室 : Gradle: error: cannot find symbol variable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18154499/

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