Android Studio 3.0 之 Kotlin中使用Bu
作者:
侃卓 | 来源:发表于
2017-11-06 10:05 被阅读0次
- 在module的build.gradle中添加:
kapt 'com.jakewharton:butterknife-compiler:8.8.1'
- 在Activity中添加:
@BindView(R.id.tv_greeting)
lateinit var greetingTv: TextView
.....
ButterKnife.bind(this)
greetingTv.text = "Hello Kotlin"
- 绑定点击事件:
@OnClick(R.id.tv_button)
internal fun onClick(v : View) {
when(v.id) {
R.id.tv_button ->
Toast.makeText(this, "Button is clicked!", Toast.LENGTH_LONG).show()
}
}
本文标题:Android Studio 3.0 之 Kotlin中使用Bu
本文链接:https://www.haomeiwen.com/subject/cwikmxtx.html
网友评论