我目前正在使用Android Studio,并在File - >处添加了三个库(com.android.support:support-v4:23.0.1
,com.android.support:appcompat-v7:23.0.1
和com.android.support:support-v13:23.0.1
)。项目结构 - >模块 - > app - >依赖关系 - >图书馆依赖。
另外,我检查了build.gradle文件,它似乎没有问题。这是gradle代码。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.marshall.thequizshow"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':volley')
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v13:23.0.1'
}
但是,当我尝试运行该应用程序时,我无法再进一步了,因为gradle构建消息一直在说“检索项目的父项时出错”。这是其中一条消息。
/Users/marshall/AndroidStudioProjects/TheQuizShow/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'Base.Widget.AppCompat.DrawerArrowToggle.Common'.
Error:(6, 23) No resource found that matches the given name: attr 'barLength'.
Error:(8, 23) No resource found that matches the given name: attr 'drawableSize'.
Error:(7, 23) No resource found that matches the given name: attr 'gapBetweenBars'.
我清楚地将这些库添加到我的项目中,但我仍然不明白为什么它一直说它无法解析与库相关的符号..
答案 0 :(得分:1)
我在某种程度上找到了这个问题的答案,但我仍然不知道为什么会这样。无论如何,我只是通过清理和重建项目来解决这个问题。