Last active
December 14, 2017 20:57
-
-
Save douglasiacovelli/d16bac54ece2e13f492218111370ffe3 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 ListActivity: AppCompatActivity { | |
private val REQUEST_FORM = 1 | |
onCreate(...){...} | |
fun startFormActivity() { | |
val intent = Intent(this, FormActivity::class.java) | |
startActivityForResult(intent, REQUEST_FORM) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment