Android Kotlin开发之使用Butterknife注意要点

Posted Denluoyia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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使用就好了

 

以上是关于Android Kotlin开发之使用Butterknife注意要点的主要内容,如果未能解决你的问题,请参考以下文章

Android开发学习之路--Kotlin之Android开发使用心得和注意事项

android——kotlin开发入门之开发环境搭建

Android开发学习之路--Kotlin之基础语法

Android框架式编程之BufferKnife

[轉]Android Libraries 介紹 - Butter knife

Android开发学习之路--Kotlin之常用表达式及函数