Android _导入android.support.v7.graphics无法解决?

时间:2015-03-10 09:53:53

标签: android android-library

我添加了我的项目appcompat_v7,但我不能import

import android.support.v7.graphics.Palette;

我该怎么办?

我在android-support-v7-appcompat.jar jar中看到我的android-support-v7.appcompatclasses为空。我如何获得子{{1}}?

4 个答案:

答案 0 :(得分:18)

在你的gradle中使用它

implementation 'com.android.support:palette-v7:22.2.0'

答案 1 :(得分:6)

将android-support-v7-palette.jar添加到您的项目中,并将其添加到构建路径。

或将相关性添加到应用 gradle 文件(最新版本)

implementation 'com.android.support:palette-v7:22.2.0'

答案 2 :(得分:1)

确保您使用 compileSdkVersion

中的版本

例如:

compileSdkVersion 22

你使用:

implementation 'com.android.support:palette-v7:22.x.x'

答案 3 :(得分:0)

V26.0.2是图形的错误,请使用这些升级的依赖项:

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
      implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support:design:27.1.1'
   testImplementation 'junit:junit:4.12'
     compile 'com.android.support:support-v4:27.1.1'