Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cloudshooterhuman/ec3f18e31618c8648077fb224416521a to your computer and use it in GitHub Desktop.
Save cloudshooterhuman/ec3f18e31618c8648077fb224416521a to your computer and use it in GitHub Desktop.
Simplifying the startActivity function on Android using reified type parameter
inline fun<reified T:Activity>Context.startActivity() {
val intent = Intent(this, T:: class.java)
startActivity(intent)
}
startActivity<DetailActivity>()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment