Android Spinner:找不到符号R.styleable.Spinner_android_dropDownSelector

时间:2016-10-17 10:35:02

标签: android android-spinner

我正在使用自定义微调器视图。使用compile sdk 22运行时没有问题。如果我将compile sdk更改为23然后运行应用程序我收到以下错误。以下变量将从api 23中删除。如何解决此问题?

  

错误:找不到符号   R.styleable.Spinner_android_dropDownVerticalOffset   R.styleable.Spinner_android_dropDownSelector   R.styleable.Spinner_android_dropDownHorizo​​ntalOffset

1 个答案:

答案 0 :(得分:0)

您应该更新“gradle版本”和依赖项。

当我们更新SDK工具时,我们应该手动检查有关该SDK的依赖关系。

Select Project--> Righ Click-->Go To Open Module Settings-->Select dependencies--> select Library dependencies-->then check what is the current library versions are available for the your SDK--> select latest one.

如果它不起作用,那么也要更新gradle版本。

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:24.2.1'

    compile 'com.android.support:design:24.2.1'
}


dependencies {
        classpath 'com.android.tools.build:gradle:2.2.1'


    }