首页 > 代码库 > butterknife 配置了点击和绑定无效
butterknife 配置了点击和绑定无效
配置了butterknife 没有报错,但是控件绑定和点击均无效。
问题原因:
butterknife配置不完善问题导致。
解决办法:
找到app的module的build.gradle
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.android.support:appcompat-v7:23.4.0‘
compile ‘com.jakewharton:butterknife:8.4.0‘
annotationProcessor ‘com.jakewharton:butterknife-compiler:8.4.0‘ //必须要有,不然就会出现以上问题
compile ‘com.android.support:support-v4:23.4.0‘
testCompile ‘junit:junit:4.12‘
compile ‘de.greenrobot:eventbus:3.0.0-beta1‘
compile ‘com.tbruyelle.rxpermissions:rxpermissions:0.8.0@aar‘
}
butterknife 配置了点击和绑定无效
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。