欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Butter Knife(牛油刀)

程序员文章站 2022-06-17 09:39:26
...

官网(Butter Knife(牛油刀)
Butter Knife(牛油刀)

github

  1. 添加依赖

    android {

    // Butterknife requires Java 8.
    compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
    }
    }
    dependencies {
    implementation ‘com.jakewharton:butterknife:10.2.1’
    annotationProcessor ‘com.jakewharton:butterknife-compiler:10.2.1’
    }

    Library projects

    buildscript {
    repositories {
    mavenCentral()
    google()
    }
    dependencies {
    classpath ‘com.jakewharton:butterknife-gradle-plugin:10.2.1’
    }
    }

  2. 安装 插件
    打开file—》setting–》plugins–》Marketplace–搜索Butterknife

  3. 使用
    在BaseActivity的 onCreate 中初始化

 @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        bind = ButterKnife.bind(this);

    }
在onDestroy中解绑
 @Override
    protected void onDestroy() {
        super.onDestroy();
        bind.unbind();
    }
相关标签: 第三方框架