Advertisement
Guest User

Untitled

a guest
May 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import android.app.Activity
  2. import android.os.Bundle
  3. import kotlinx.android.synthetic.main.activity_home.*
  4.  
  5. class HomeActivity : Activity() {
  6.  
  7. override fun onCreate(savedInstanceState: Bundle?) {
  8. super.onCreate(savedInstanceState)
  9. setContentView(R.layout.activity_home)
  10. button.setOnClickListener {toast("This is awesome!!!")}
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement