@BindView如何使用

第一步:

buider.gradle(app中的dependencies加入):

implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

第二步:

在OnCreate中加入以下代码:

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);    //必须要这一句,不然会出现奔溃

即可使用:

@BindView(R.id.text1)
TextView textView;

你可能感兴趣的:(Android)