spiegel-keyman/android/docs/engine/KMManager/onResume.md
2024-10-31 10:08:17 +07:00

521 B

title
KMManager.onResume()

Summary

The onResume() method performs necessary actions in an Activity's onResume().

Syntax

KMManager.onResume()

Description

To be called from an Activity's onResume() method.

Examples

Example: Using onResume()

The following script illustrate the use of onResume():

@Override
protected void onResume() {
    super.onResume();
    KMManager.onResume();
    // ...
}

See also