Created
August 29, 2018 16:06
-
-
Save SeongUgJung/293868014642ec8467aedb169539fe0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SecondAppStarterUsecase(private val context: Context) { | |
fun showSecond(index : Int) { | |
context.startActivity(Intent().apply { putExtra("INDEX",index) }) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment