public interface ActivitiesScheduler
Modifier and Type | Method and Description |
---|---|
Activity |
getLauncher()
Gets the current activities launcher.
|
void |
hide(Activity activity)
Asks to hide an activity.
|
void |
setLauncher(Activity launcher)
Sets the current activities launcher.
|
void |
show(Activity activity)
Asks to show an activity.
|
void |
showLauncher()
Asks to show the current launcher.
|
void setLauncher(Activity launcher)
launcher
- the launcher to set.Activity getLauncher()
null
if there is no registered
launcher.void showLauncher()
void show(Activity activity) throws java.lang.NullPointerException
activity
- the activity to show an activity from.java.lang.NullPointerException
- if the given activity is null
.void hide(Activity activity)
activity
- the activity to hide.