Skip to content

Instantly share code, notes, and snippets.

@douglasiacovelli
Last active December 14, 2017 20:57
Show Gist options
  • Save douglasiacovelli/d16bac54ece2e13f492218111370ffe3 to your computer and use it in GitHub Desktop.
Save douglasiacovelli/d16bac54ece2e13f492218111370ffe3 to your computer and use it in GitHub Desktop.
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