Guest User

Untitled

a guest
May 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. class MainActivity : AppCompatActivity() {
  2. private val messageView : TextView by lazy {
  3. // runs on first access of messageView
  4. findViewById(R.id.message_view) as TextView
  5. }
  6.  
  7. override fun onCreate(savedInstanceState: Bundle?) {
  8. super.onCreate(savedInstanceState)
  9.  
  10. setContentView(R.layout.activity_main)
  11. messageView.text = "Hello"
  12. }
  13. }
Add Comment
Please, Sign In to add comment