Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Index

On this page

KMManager.onPause()

Summary

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

Syntax

KMManager.onPause()

Description

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

Examples

Example: Using onPause()

The following script illustrate the use of onPause():

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

See also