public interface ActivityStarter
Activity.| Modifier and Type | Method and Description |
|---|---|
PostActivityStarter |
start()
Starts the
Activity, by calling
Activity#startActivity(android.content.Intent) for the previously given
Context or Fragment or support Fragment
objects. |
PostActivityStarter |
startForResult(int requestCode)
Starts the
Activity for result, by calling
Activity#startActivityForResult(android.content.Intent, int) for the
previously given Context or Fragment or
support Fragment objects. |
PostActivityStarter start()
Activity, by calling
Activity#startActivity(android.content.Intent) for the previously given
Context or Fragment or support Fragment
objects. It also passes the given extras, the options
Bundle, if new methods are available which accept
that.PostActivityStarter object to optionally chain additional
actions.PostActivityStarter startForResult(int requestCode)
Activity for result, by calling
Activity#startActivityForResult(android.content.Intent, int) for the
previously given Context or Fragment or
support Fragment objects. It also passes the given extras, the options
Bundle, if new methods are available which accept
that.requestCode - this code will be returned in onActivityResult() when the activity
exits.PostActivityStarter object to optionally chain additional
actions.Copyright © 2010–2020 simpligility technologies inc.. All rights reserved.