22 lines
528 B
Kotlin
22 lines
528 B
Kotlin
import android.app.Activity
|
|
import android.view.View
|
|
|
|
val Activity.item_detail_container: View
|
|
get() = findViewById(R.id.item_detail_container)!!
|
|
|
|
val Activity.textView1: View
|
|
get() = findViewById(R.id.textView1)!!
|
|
|
|
val Activity.password: View
|
|
get() = findViewById(R.id.password)!!
|
|
|
|
val Activity.textView2: View
|
|
get() = findViewById(R.id.textView2)!!
|
|
|
|
val Activity.passwordConfirmation: View
|
|
get() = findViewById(R.id.passwordConfirmation)!!
|
|
|
|
val Activity.login: View
|
|
get() = findViewById(R.id.login)!!
|
|
|