Interface ActivityPluginBinding.OnSaveInstanceStateListener
-
- Enclosing interface:
- ActivityPluginBinding
public static interface ActivityPluginBinding.OnSaveInstanceStateListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onRestoreInstanceState(Bundle bundle)
Invoked when the associatedActivity
executesActivity.onCreate(Bundle)
or associatedFragment
executesFragment#onCreate(Bundle)
.void
onSaveInstanceState(Bundle bundle)
-
-
-
Method Detail
-
onSaveInstanceState
void onSaveInstanceState(@NonNull Bundle bundle)
-
onRestoreInstanceState
void onRestoreInstanceState(@Nullable Bundle bundle)
Invoked when the associatedActivity
executesActivity.onCreate(Bundle)
or associatedFragment
executesFragment#onCreate(Bundle)
.
-
-