10 lines
213 B
Kotlin
10 lines
213 B
Kotlin
package kotlinx.android.synthetic.layout
|
|
|
|
import android.app.Activity
|
|
import android.view.View
|
|
import android.widget.*
|
|
|
|
val Activity.MyButton: org.my.cool.Button
|
|
get() = findViewById(0) as org.my.cool.Button
|
|
|