Guest User

Untitled

a guest
Oct 23rd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. inline fun <reified T : Activity> Context.launchActivity(intentBlock: Intent.() -> Unit = {}) {
  2. val intent = Intent(this, T::class.java)
  3. intent.intentBlock()
  4. startActivity(intent)
  5. }
Add Comment
Please, Sign In to add comment