Skip to content

Instantly share code, notes, and snippets.

@BeokBeok
Last active May 5, 2020 14:42
Show Gist options
  • Save BeokBeok/d583081d23929289d435faff6e73264a to your computer and use it in GitHub Desktop.
Save BeokBeok/d583081d23929289d435faff6e73264a to your computer and use it in GitHub Desktop.
제네릭을 활용한 startActivity 함수 간편하게 사용하기
inline fun <reified T : Activity> Context.startActivity() {
val intent = Intent(this, T::class.java)
startActivity(intent)
}
startActivity<MainActivity>()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment