美文网首页Android开发Android技术知识Android开发
神兵利器--ButterKnife module中使用的坑

神兵利器--ButterKnife module中使用的坑

作者: jzhu085 | 来源:发表于2017-03-17 15:10 被阅读739次

    问题:如何在module中使用ButterKnife
    解决:当前module中的build.gradle添加

    apply plugin: 'android-apt'
    apply plugin: 'com.jakewharton.butterknife'
    dependencies {
        apt "com.jakewharton:butterknife-compiler:$butterknifeVersion"  
        //你的baselibrary包含butterknife
        compile project(':baselibrary')
    }  
    
    

    问题:module中使用ButterKnife无法找到R
    解决:以R2.id.xxxx寻找对应的view

     @BindView(R2.id.with_param)
      Button btn;
    
    

    问题:view点击事件对应不上
    解决:R2.id.xxx == R.id.xxx
    原因:R2 is only for use inside annotations in library projects but all runtime code should still be using the normal R

     @OnClick({ R2.id.with_param, R2.id.with_interceptor, R2.id.with_service, R2.id.with_url, R2.id.with_no_interceptor })
        public void onClick(View view) {
            int id = view.getId();
            if (id == R.id.with_param) {
            }
            else if (id == R.id.with_interceptor) {
            }
            else if (id == R.id.with_no_interceptor) {
            }
            else if (id == R.id.with_service) {
            }
        }
    

    Demo:https://github.com/zhujian1989/mf

    ps:持续记录使用中的问题

    相关文章

      网友评论

        本文标题:神兵利器--ButterKnife module中使用的坑

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