|
Foxit PDF SDK
9.1
|
Public Member Functions | |
| void | onCreate (Activity act, Bundle savedInstanceState) |
| void | onStart (Activity act) |
| void | onPause (Activity act) |
| void | onResume (Activity act) |
| void | onStop (Activity act) |
| void | onDestroy (Activity act) |
| void | onSaveInstanceState (Activity act, Bundle bundle) |
| void | onHiddenChanged (boolean hidden) |
| void | onActivityResult (Activity act, int requestCode, int resultCode, Intent data) |
Interface definition for a callback to be invoked when the lifecycle of a UI extension executing.
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onActivityResult | ( | Activity | act, |
| int | requestCode, | ||
| int | resultCode, | ||
| Intent | data | ||
| ) |
Receive and handle result from activity
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onCreate | ( | Activity | act, |
| Bundle | savedInstanceState | ||
| ) |
Should be called in Activity#onCreate(Bundle) or Fragment#onCreate(Bundle)
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onDestroy | ( | Activity | act | ) |
Should be called in Activity#onDestroy() or Fragment#onDestroy()
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onHiddenChanged | ( | boolean | hidden | ) |
Should be called in Fragment#onHiddenChanged(boolean)
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onPause | ( | Activity | act | ) |
Should be called in Activity#onPause() or Fragment#onPause()
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onResume | ( | Activity | act | ) |
Should be called in Activity#onResume() or Fragment#onResume()
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onSaveInstanceState | ( | Activity | act, |
| Bundle | bundle | ||
| ) |
Should be called in Activity#onSaveInstanceState(Bundle), Activity#onSaveInstanceState(Bundle, PersistableBundle) or Fragment#onSaveInstanceState(Bundle)
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onStart | ( | Activity | act | ) |
Should be called in Activity#onStart() or Fragment#onStart()
| void com.foxit.uiextensions.pdfreader.ILifecycleEventListener.onStop | ( | Activity | act | ) |
Should be called in Activity#onStop() or Fragment#onStop()