我开始使用 Android 开发。我已遵循此入门指南并使用Android Studio(不是 Eclipse)。
我在我的设备上运行了 Hello World,到目前为止一切顺利。但..
添加此导入时出现问题:(按照指南的说明)
import android.support.v4.app.NavUtils; // cannot resolve symbol 'support'
这行似乎需要它(评论它并自动解析导入不起作用)
NavUtils.navigateUpFromSameTask(this);
支持导入是红色下划线,鼠标悬停告诉我Cannot resolve symbol 'support'
当然,构建也不会工作。我已经看到了类似问题的答案,例如;建议清除缓存并重新启动(尝试过),建议以管理员身份运行 SDK Manager 并更新(尝试过),以及其他一些似乎特定于 Eclipse 的问题/解决方案。
我是 Android 开发和 IDE 的新手。如何在 Android Studio v0.2.9 中解决这个问题?
编辑:
我的 build.gradle 文件的内容
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 16
}
}
dependencies {
// You must install or update the Support Repository through the SDK manager to use this dependency.
// The Support Repository (separate from the corresponding library) can be found in the Extras category.
// compile 'com.android.support:appcompat-v7:18.0.0'
}