美文网首页
正确使用butterknife注解框架解脱findViewByI

正确使用butterknife注解框架解脱findViewByI

作者: geaosu | 来源:发表于2017-12-10 00:24 被阅读0次
正确使用butterknife注解框架解脱findViewById - geaosu

    1. app的build.gradle文件中添加代码, 如下:
        * 在文件的第二行添加apply plugin: 'android-apt'
            //这个是butterknife注解框架的
            apply plugin: 'android-apt'

        * 在dependencies依赖库中添加两行代码, 如下:
            dependencies {
                //这两个都是butterknife注解框架的
                compile 'com.jakewharton:butterknife:8.1.0'
                apt 'com.jakewharton:butterknife-compiler:8.1.0'
            }

    2. 在project的build.gradle文件中添加代码, 如下:
        dependencies {
            //这个是butterknife注解框架的
            classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        }

相关文章

网友评论

      本文标题:正确使用butterknife注解框架解脱findViewByI

      本文链接:https://www.haomeiwen.com/subject/ajkmixtx.html