> android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.pp.receipe"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.weiwangcn.betterspinner:library-material:1.1.0'
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.android.support:design:25.3.0'
testCompile 'junit:junit:4.12'
}
Here is my code and android monitor debug error
问问题
775 次
2 回答
0
该库需要排除 appcompat 检查 BetterSpinner的README
你的依赖在你的 gradle 中应该是这样的
compile ('com.weiwangcn.betterspinner:library:1.1.0') {
exclude group: 'com.android.support', module: 'appcompat-v7'
}
于 2017-04-11T16:28:12.537 回答
0
<com.weiwangcn.betterspinner.library.BetterSpinner
android:id="@+id/spinnerr"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Select Language"/>
我改变了 .BetterSpinner 而不是材料 BETTER SPINNER
于 2017-04-11T16:40:18.657 回答