diff options
author | Victoria Lease <violets@google.com> | 2012-09-10 14:12:47 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-10 14:12:48 -0700 |
commit | d7f5a51baf2c46436dc5bac3807fb0d46cbff304 (patch) | |
tree | e58ebfb7e060ecdd1ce769cc3a09f7327d58b762 /api | |
parent | e11dc0ddab438d3b6545bc5d1582e1deddb5d465 (diff) | |
parent | b38070caa5143ab9fd1883e0c7c879533a480bc7 (diff) | |
download | frameworks_base-d7f5a51baf2c46436dc5bac3807fb0d46cbff304.zip frameworks_base-d7f5a51baf2c46436dc5bac3807fb0d46cbff304.tar.gz frameworks_base-d7f5a51baf2c46436dc5bac3807fb0d46cbff304.tar.bz2 |
Merge "IME support for trackball and generic motion events" into jb-mr1-dev
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index c1d8c9e..1e3e2bb 100644 --- a/api/current.txt +++ b/api/current.txt @@ -10217,6 +10217,7 @@ package android.inputmethodservice { method public final android.os.IBinder onBind(android.content.Intent); method public abstract android.inputmethodservice.AbstractInputMethodService.AbstractInputMethodImpl onCreateInputMethodInterface(); method public abstract android.inputmethodservice.AbstractInputMethodService.AbstractInputMethodSessionImpl onCreateInputMethodSessionInterface(); + method public boolean onGenericMotionEvent(android.view.MotionEvent); method public boolean onTrackballEvent(android.view.MotionEvent); } @@ -10229,6 +10230,7 @@ package android.inputmethodservice { public abstract class AbstractInputMethodService.AbstractInputMethodSessionImpl implements android.view.inputmethod.InputMethodSession { ctor public AbstractInputMethodService.AbstractInputMethodSessionImpl(); + method public void dispatchGenericMotionEvent(int, android.view.MotionEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public void dispatchKeyEvent(int, android.view.KeyEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public void dispatchTrackballEvent(int, android.view.MotionEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public boolean isEnabled(); @@ -26697,6 +26699,7 @@ package android.view.inputmethod { public abstract interface InputMethodSession { method public abstract void appPrivateCommand(java.lang.String, android.os.Bundle); + method public abstract void dispatchGenericMotionEvent(int, android.view.MotionEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public abstract void dispatchKeyEvent(int, android.view.KeyEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public abstract void dispatchTrackballEvent(int, android.view.MotionEvent, android.view.inputmethod.InputMethodSession.EventCallback); method public abstract void displayCompletions(android.view.inputmethod.CompletionInfo[]); |