Kotlin ButterKnife使用及问题

1、配置

/app/build.gradle  使用

第一步

apply plugin: 'kotlin-kapt'

第二步

dependencies { 

  //引入butterknife-compiler时不能使用annotationProcessor,要改为kapt。

  implementation 'com.jakewharton:butterknife:10.0.0' 

  kapt 'com.jakewharton:butterknife-compiler:10.0.0'

}

2、引用

首先要在onCreate方法的setContentView之后设置绑定BufferKnike.bind(this)

然后@BindView(id) lateinit var button : Button

然后Onclick(id) fun onClick(){ ....  }

 

你可能感兴趣的:(原创)