Android Kotlin开发之使用Butterknife注意要点
使用kotlin-kapt插件
依赖由java的annotationProcessor改为kapt
在使用控件绑定使用时,网上搜使用方法,不知道被哪个家伙带坑里了。
//错误用法
@BindView(R.id.tv_title)
lateinit var tvTitle :TextView
导致使用控件时,根本没有绑定成功,报错
kotlin.UninitializedPropertyAccessException: lateinit property title has not been initialized
//正确使用
tv_title.setTextColor(Color.RED)
tv_title.setTextSize(TypedValue.COMPLEX_UNIT_SP, 17F)
tv_title.text = "大标题"
Kotlin使用Butterknife控件绑定注解,不需要@BindView了
只要在activity或fragment...中进行Butterknife.bind()之后,直接用布局的id使用就好了