java.lang.Object | |
↳ | android.inputmethodservice.AbstractInputMethodService.AbstractInputMethodImpl |
Known Direct Subclasses |
Base class for derived classes to implement their InputMethod interface. This takes care of basic maintenance of the input method, but most behavior must be implemented in a derived class.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.view.inputmethod.InputMethod
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Instantiate a new client session for the input method, by calling
back to AbstractInputMethodService.onCreateInputMethodSessionInterface().
| |||||||||||
Take care of killing an existing session by calling its
AbstractInputMethodSessionImpl.revokeSelf() method.
| |||||||||||
Take care of enabling or disabling an existing session by calling its
AbstractInputMethodSessionImpl.setEnabled() method.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
| |||||||||||
From interface android.view.inputmethod.InputMethod
|
Instantiate a new client session for the input method, by calling back to AbstractInputMethodService.onCreateInputMethodSessionInterface().
callback | Interface that is called with the newly created session. |
---|
Take care of killing an existing session by calling its AbstractInputMethodSessionImpl.revokeSelf() method.
session | The InputMethodSession previously provided through SessionCallback.sessionCreated() that is to be revoked. |
---|
Take care of enabling or disabling an existing session by calling its AbstractInputMethodSessionImpl.setEnabled() method.
session | The InputMethodSession previously provided through SessionCallback.sessionCreated() that is to be changed. |
---|