We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e7b802 + 06a8e9b commit aa4a571Copy full SHA for aa4a571
1 file changed
core/java/android/widget/TextView.java
@@ -5514,7 +5514,7 @@ public boolean onKeyUp(int keyCode, KeyEvent event) {
5514
* call performClick(), but that won't do anything in
5515
* this case.)
5516
*/
5517
- if (hasOnClickListeners()) {
+ if (!hasOnClickListeners()) {
5518
if (mMovement != null && mText instanceof Editable
5519
&& mLayout != null && onCheckIsTextEditor()) {
5520
InputMethodManager imm = InputMethodManager.peekInstance();
@@ -5551,7 +5551,7 @@ public boolean onKeyUp(int keyCode, KeyEvent event) {
5551
5552
5553
5554
5555
View v = focusSearch(FOCUS_DOWN);
5556
5557
if (v != null) {
0 commit comments