diff options
author | Gilles Debunne <debunne@google.com> | 2010-09-02 15:27:32 -0700 |
---|---|---|
committer | Gilles Debunne <debunne@google.com> | 2010-09-02 15:27:47 -0700 |
commit | d4723bb415dc70008c744d1027c3e3d9473adfe1 (patch) | |
tree | f13b46f1ff92d3d4c763f59be0cff8c24e3583d8 /core/java/android/view/inputmethod | |
parent | 26d708d93624d2d060529b7e33e0a20172e85efd (diff) | |
download | frameworks_base-d4723bb415dc70008c744d1027c3e3d9473adfe1.zip frameworks_base-d4723bb415dc70008c744d1027c3e3d9473adfe1.tar.gz frameworks_base-d4723bb415dc70008c744d1027c3e3d9473adfe1.tar.bz2 |
Revert "Merge "InputMethodManager showSoftInput return documentation." into gingerbread"
This reverts commit 26d708d93624d2d060529b7e33e0a20172e85efd, reversing
changes made to 3ac85d31de6cab5a468b7728b3340cf1b57bc8fe.
Change-Id: Ifc19f837bee7437707ddddf0b19cb6bce53dd2c5
Diffstat (limited to 'core/java/android/view/inputmethod')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodManager.java | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodManager.java b/core/java/android/view/inputmethod/InputMethodManager.java index adee260..e30687f 100644 --- a/core/java/android/view/inputmethod/InputMethodManager.java +++ b/core/java/android/view/inputmethod/InputMethodManager.java @@ -16,10 +16,6 @@ package android.view.inputmethod; -import com.android.internal.os.HandlerCaller; -import com.android.internal.view.IInputConnectionWrapper; -import com.android.internal.view.InputBindResult; - import android.content.Context; import android.graphics.Rect; import android.os.Bundle; @@ -38,6 +34,15 @@ import android.view.MotionEvent; import android.view.View; import android.view.ViewRoot; +import com.android.internal.os.HandlerCaller; +import com.android.internal.view.IInputConnectionWrapper; +import com.android.internal.view.IInputContext; +import com.android.internal.view.IInputMethodCallback; +import com.android.internal.view.IInputMethodClient; +import com.android.internal.view.IInputMethodManager; +import com.android.internal.view.IInputMethodSession; +import com.android.internal.view.InputBindResult; + import java.io.FileDescriptor; import java.io.PrintWriter; import java.util.List; @@ -379,7 +384,6 @@ public final class InputMethodManager { super(mainLooper, conn); } - @Override public boolean isActive() { return mActive; } @@ -735,7 +739,6 @@ public final class InputMethodManager { * code you receive may be either {@link #RESULT_UNCHANGED_SHOWN}, * {@link #RESULT_UNCHANGED_HIDDEN}, {@link #RESULT_SHOWN}, or * {@link #RESULT_HIDDEN}. - * @return false if a problem occurred, true otherwise. */ public boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver) { |