Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa4a5713 authored by Gilles Debunne's avatar Gilles Debunne Committed by Android (Google) Code Review
Browse files

Merge "Make the Next key navigate between TextViews" into ics-mr1

parents 0e7b8020 06a8e9b1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5514,7 +5514,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                     * call performClick(), but that won't do anything in
                     * this case.)
                     */
                    if (hasOnClickListeners()) {
                    if (!hasOnClickListeners()) {
                        if (mMovement != null && mText instanceof Editable
                                && mLayout != null && onCheckIsTextEditor()) {
                            InputMethodManager imm = InputMethodManager.peekInstance();
@@ -5551,7 +5551,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                         * call performClick(), but that won't do anything in
                         * this case.)
                         */
                        if (hasOnClickListeners()) {
                        if (!hasOnClickListeners()) {
                            View v = focusSearch(FOCUS_DOWN);

                            if (v != null) {