diff options
| author | 2011-12-08 11:57:06 -0800 | |
|---|---|---|
| committer | 2011-12-08 11:57:06 -0800 | |
| commit | aa4a5713aab73cf7c9486cd587a0d986a8daf7e3 (patch) | |
| tree | a93fb55579519bf31baf9137bcfe08fb790664dc | |
| parent | 0e7b8020fd8607957844f7d67e8aaa6dc2ef816f (diff) | |
| parent | 06a8e9b1ce63f1e0842c877133b2562a6b638123 (diff) | |
Merge "Make the Next key navigate between TextViews" into ics-mr1
| -rw-r--r-- | core/java/android/widget/TextView.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index 4a3a7489e7d1..c330926f121c 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -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) { |