Android butterknife 在 phone 和 library module 中的使用
【摘要】
当前 Android Studio 的版本为 3.3.2、gradle 使用的是 5.3.1
phone module
butterknife 在 phone module 中使用的话,只要添加如下两...
当前 Android Studio 的版本为 3.3.2、gradle 使用的是 5.3.1
phone module
butterknife 在 phone module 中使用的话,只要添加如下两句即可
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
- 1
- 2
使用方式如下
@bindView(R.id.custom_id)
Button btn;
- 1
- 2
library module
除了在 module 的 build.gradle 上配置
apply plugin: 'com.android.library'
apply plugin: 'com.jakewharton.butterknife'
……
dependencies {
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
还要在 project 的 build.gradle 上进行配置
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "com.jakewharton:butterknife-gradle-plugin:10.1.0"
}
- 1
- 2
- 3
- 4
使用上和 phone module 方式引用的稍有区别,需要将 R 改为 R2
@bindView(R2.id.custom_id)
Button btn;
- 1
- 2
文章来源: blog.csdn.net,作者:福州-司马懿,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/chy555chy/article/details/89179610
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)