view binding in android
android {
...
//in build.gradle(app level)
buildFeatures {
viewBinding true
}
}
view binding in android
android {
...
//in build.gradle(app level)
buildFeatures {
viewBinding true
}
}
kotlin binding views to activity
// Adding this to your build.gradle (Module level)
plugins {
id 'com.android.application'
id 'kotlin-android'
//Added:
id 'kotlin-kapt'
id 'kotlin-android-extensions'
}
// And having this in your layout
<Button
android:id="@+id/btn_finish"
(...)
// You ca use this in the .kt file
btn_finish.setOnClickListener {
// Do Something
}
view binding in android
android{
...
//for android gradle plugin 3.6 or lower
viewBinding{
enabled true
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us