16 lines
375 B
Kotlin
16 lines
375 B
Kotlin
package android.widget
|
|
|
|
import android.view.View
|
|
|
|
class EditText: View {
|
|
override fun toString(): String {return "EditText"}
|
|
}
|
|
class TextView: View {
|
|
override fun toString(): String {return "TextView"}
|
|
}
|
|
class Button: View {
|
|
override fun toString(): String {return "Button"}
|
|
}
|
|
class FrameLayout: View {
|
|
override fun toString(): String {return "FrameLayout"}
|
|
} |