diff options
| -rw-r--r-- | core/java/android/widget/TextView.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index 3e1b674892a1..80ea6ea0fe24 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -8423,6 +8423,33 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener @Override public boolean performAccessibilityAction(int action, Bundle arguments) { switch (action) { + case AccessibilityNodeInfo.ACTION_CLICK: { + boolean handled = false; + + // Simulate View.onTouchEvent for an ACTION_UP event. + if (isClickable() || isLongClickable()) { + if (isFocusable() && !isFocused()) { + requestFocus(); + } + + performClick(); + handled = true; + } + + // Simulate TextView.onTouchEvent for an ACTION_UP event. + if ((mMovement != null || onCheckIsTextEditor()) && isEnabled() + && mText instanceof Spannable && mLayout != null + && (isTextEditable() || isTextSelectable()) && isFocused()) { + // Show the IME, except when selecting in read-only text. + final InputMethodManager imm = InputMethodManager.peekInstance(); + viewClicked(imm); + if (!isTextSelectable() && mEditor.mShowSoftInputOnFocus && imm != null) { + handled |= imm.showSoftInput(this, 0); + } + } + + return handled; + } case AccessibilityNodeInfo.ACTION_COPY: { if (isFocused() && canCopy()) { if (onTextContextMenuItem(ID_COPY)) { |