• 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'
    }
  • 相关阅读:
    1001.A+B Format(20)
    大一下学期的自我目标
    re模块3
    re模块2
    re模块
    configParser模块
    logging模块
    hashlib模块
    sys模块
    isinstance函数
  • 原文地址:https://www.cnblogs.com/feijian/p/6193552.html
Copyright © 2020-2023  润新知