Loading core/java/android/view/View.java +10 −8 Original line number Diff line number Diff line Loading @@ -6886,12 +6886,14 @@ public class View implements Drawable.Callback, KeyEvent.Callback, switch (action) { case AccessibilityNodeInfo.ACTION_CLICK: { if (isClickable()) { return performClick(); performClick(); return true; } } break; case AccessibilityNodeInfo.ACTION_LONG_CLICK: { if (isLongClickable()) { return performLongClick(); performLongClick(); return true; } } break; case AccessibilityNodeInfo.ACTION_FOCUS: { Loading Loading
core/java/android/view/View.java +10 −8 Original line number Diff line number Diff line Loading @@ -6886,12 +6886,14 @@ public class View implements Drawable.Callback, KeyEvent.Callback, switch (action) { case AccessibilityNodeInfo.ACTION_CLICK: { if (isClickable()) { return performClick(); performClick(); return true; } } break; case AccessibilityNodeInfo.ACTION_LONG_CLICK: { if (isLongClickable()) { return performLongClick(); performLongClick(); return true; } } break; case AccessibilityNodeInfo.ACTION_FOCUS: { Loading