var name: String = null // これだと入らない var title: String? = null // ?をつけるとnullが許可される
valを使う
val description = "hoge" description = "hoge2" // 許可されない
text1.setText(name ?: "hello");