Loading core/java/android/widget/TextView.java +8 −2 Original line number Diff line number Diff line Loading @@ -7388,14 +7388,20 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener if (!mInsertionControllerEnabled) { hideInsertionPointCursorController(); if (mInsertionPointCursorController != null) { mInsertionPointCursorController.onDetached(); mInsertionPointCursorController = null; } } if (!mSelectionControllerEnabled) { stopSelectionActionMode(); if (mSelectionModifierCursorController != null) { mSelectionModifierCursorController.onDetached(); mSelectionModifierCursorController = null; } } } /** * @return True iff this TextView contains a text that can be edited, or if this is Loading Loading
core/java/android/widget/TextView.java +8 −2 Original line number Diff line number Diff line Loading @@ -7388,14 +7388,20 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener if (!mInsertionControllerEnabled) { hideInsertionPointCursorController(); if (mInsertionPointCursorController != null) { mInsertionPointCursorController.onDetached(); mInsertionPointCursorController = null; } } if (!mSelectionControllerEnabled) { stopSelectionActionMode(); if (mSelectionModifierCursorController != null) { mSelectionModifierCursorController.onDetached(); mSelectionModifierCursorController = null; } } } /** * @return True iff this TextView contains a text that can be edited, or if this is Loading