mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
521 B
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();
// ...
}