mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
658 B
658 B
| title |
|---|
| KMManager.onDestroy() |
Summary
The onDestroy() method performs necessary actions in an
InputMethodService's onDestroy().
Syntax
KMManager.onDestroy()
Description
To be called from an InputMethodService's onDestroy() method.
Examples
Example: Using onDestroy()
The following script illustrate the use of onDestroy():
@Override
public void onDestroy() {
// ...
KMManager.onDestroy();
super.onDestroy();
}