我开始使用Android开发。 我已按照此Getting Started指南使用 Android Studio (不是eclipse)。
我在设备上运行了Hello World,到目前为止一直很好。但..
添加此导入时会出现问题:(按照指南的说明)
import android.support.v4.app.NavUtils; // cannot resolve symbol 'support'
似乎这条线需要它(评论并自动解决导入无效)
NavUtils.navigateUpFromSameTask(this);
支持导入带有红色下划线,mouseover告诉我Cannot resolve symbol 'support'
构建不会在任何一个方面工作。我已经看到类似问题的答案,如; 建议清除缓存和重新启动(尝试过), 建议以管理员身份运行SDK Manager并更新(尝试过), 以及其他一些看似日蚀的问题/解决方案。
我是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'
}
答案 0 :(得分:15)
修改您的gradle文件,如下所示,并尝试它是否有效。
......
dependencies {
compile 'com.android.support:support-v4:18.0.0'
// 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'
}
答案 1 :(得分:8)
使用GUI修复Android Studio,无需直接编辑Gradle文件(从Android Studio开始v1.0.1到v2.2.3验证):
在项目树中右键单击您的模块。它是根节点中的一个,在大多数情况下是第一个。默认情况下,它被称为app
。
在菜单中选择打开模块设置:
切换到依赖关系标签。
单击对话框窗口底部的添加按钮(+)。
选择图书馆依赖。
从列表中选择support-v4
。
点击确定并重建。
答案 2 :(得分:6)
我没有编辑build.gradle
,而是在你的根项目上用鼠标做了maven方式 - >打开模块设置 - >依赖关系选项卡 - > + - > Maven依赖 - >搜索“NavUtils”并选择com.google.android:support-v4:r7@jar
。
SDK版本19和Android Studio 0.4.2