美文网首页
Android Studio 3.0 之 Kotlin中使用Bu

Android Studio 3.0 之 Kotlin中使用Bu

作者: 侃卓 | 来源:发表于2017-11-06 10:05 被阅读0次
  1. 在module的build.gradle中添加:
kapt 'com.jakewharton:butterknife-compiler:8.8.1'
  1. 在Activity中添加:
@BindView(R.id.tv_greeting)
lateinit var greetingTv: TextView
.....
ButterKnife.bind(this)
greetingTv.text = "Hello Kotlin"
  1. 绑定点击事件:
@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