美文网首页
ButterKnife:绑定我们的Activity和Fragme

ButterKnife:绑定我们的Activity和Fragme

作者: zhong_bao | 来源:发表于2017-07-04 10:17 被阅读0次

    1、Activity的绑定:
    ButterKnife.bind(this);

     @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activtiy_battery);
            ButterKnife.bind(this);
    }
    

    2、Fragment的绑定:

     @Override
        public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
     @Nullable Bundle savedInstanceState) {
            View view = inflater.inflate(R.layout.f_modify,null);
            ButterKnife.bind(this,view);
            initReceiver(new String[]{action_getData,action_update});
            return view;
        }
    

    注意这里的this,不能改用getActivity()方法,否则会报错。

    相关文章

      网友评论

          本文标题:ButterKnife:绑定我们的Activity和Fragme

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