码迷,mamicode.com
首页 > 其他好文 > 详细

butterknife 配置了点击和绑定无效

时间:2016-12-18 02:06:52      阅读:542      评论:0      收藏:0      [点我收藏+]

标签:end   ati   rmi   ssi   mpi   str   android   color   class   

配置了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 配置了点击和绑定无效

标签:end   ati   rmi   ssi   mpi   str   android   color   class   

原文地址:http://www.cnblogs.com/feijian/p/6193552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!