Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Index

On this page

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