make pr-6ren">
gpt4 book ai didi

安卓工作室 "cannot resolve symbol String"

转载 作者:可可西里 更新时间:2023-11-01 18:53:27 26 4
gpt4 key购买 nike

我有一个在 Eclipse 中启动的小项目。然后我将它导出到一个 gradle 文件,并将它导入到 AS (0.5.7)。

一开始,似乎并没有像它应该的那样工作,但在“build => make project”之后,我似乎没有得到任何突出显示的错误。

所以我尝试在模拟设备上运行该应用程序。好吧,该设备从未启动过,现在我在提到“String”、“ArrayList”等时看到红色波浪线,表示它“无法解析符号”。

什么鬼?

我尝试过清理和重建,以及“将项目与 gradle 文件同步”。

我从这里去哪里?我非常想开始在 AS 中进行开发!

编辑:项目设置截图:http://i.imgur.com/ycNyPaT.png

build.gradle 的内容:

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
apply plugin: 'android'

dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}

android {
compileSdkVersion 19
buildToolsVersion "19.0.1"

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}

// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')

// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}

最佳答案

还有一个更简单也是我认为更正确的方法:

只需选择菜单项“文件/使缓存无效/重新启动...”

对我来说,这成功地解决了问题(是由于 PC 突然断电引起的)

enter image description here

关于安卓工作室 "cannot resolve symbol String",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23445233/

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