当前位置:   article > 正文

ButterKnife原理及其使用_butterknife 10.0.2

butterknife 10.0.2

ButterKnife原理及其使用

关于ButterKnife

ButterKnife是Jake Wharton开发的一款Android框架,用于Android系统的View注入框架,主要用于简化代码。减少在进行控件绑定以及控件事件编写时的重复编写,可用来取代findViewById以及setOnClickListener。

使用

在使用ButterKnife之前,需要先添加以下的依赖:

  1. 在Project的build.gradle中添加如下配置:
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        ...
        classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.2'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  1. 在Module的build.gradle添加如下配置:
android {
   //...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
dependencies {
    //...
 
    
    implementation 'com.jakewharton:butterknife:10.2.2'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.2'
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

以上所使用的ButterKnife是最新版本10.0.2,相关配置信息可到这里去查询:作者github

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/529673
推荐阅读
相关标签
  

闽ICP备14008679号