butterknife 8.2.1简单使用

配置

1.在project的builde.gradle 中

dependencies {
   classpath 'com.android.tools.build:gradle:2.1.2'
   classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'//加上这句        
    }

2.在module的builde.gradle 中

首先加入:
apply plugin: 'com.neenbedankt.android-apt'
然后:

dependencies {
    compile 'com.jakewharton:butterknife:8.2.1'
    apt 'com.jakewharton:butterknife-compiler:8.2.1'
}

配置就完成了。

简单使用

在activity中

@BindView(R.id.name_tv_main_activity)
TextView tv_name;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        unbinder = ButterKnife.bind(this);
    }
    @Override
    protected void onDestroy() {
        this.unbinder.unbind();
        super.onDestroy();
    }

注意:这里TextView不能用private或者static来修饰。否则就会报下面的错误,

Error:(21, 22) 错误: @BindView fields must not be private or static. (com.example.api_test.MainActivity.tv_name)

你可能感兴趣的:(android-入门)