我项目中的所有代码均为红色。但是我可以成功运行我的项目。我更新了andriod
工作室以及我打扫,重建项目。错误仍然存在。谁能帮忙
解决这个问题。
最佳答案
尝试同步gradle
File -> Sync Project With gradle Files
如果不起作用,请按照解决方案2。
只需删除
dependencies{}
部分中的依赖项并同步然后回到所有依赖项并同步
步骤1
//1. Remove all dependencies
//2. Sync
dependencies {
}
步骤2
//1. back to all dependencies (Re-Add)
//2. Sync
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
......
......
}
有一天,我遇到了同样的问题,并通过第二个技巧解决了它们。
关于android - Android Studio代码显示红色。但它运行成功,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60426806/