Interface TextSelectionManager.OnTextSelectionModeChangeListener
-
- All Implemented Interfaces:
public interface TextSelectionManager.OnTextSelectionModeChangeListener
Listener for entering and exiting text selection mode.
-
-
Method Summary
Modifier and Type Method Description abstract void
onEnterTextSelectionMode(@NonNull() TextSelectionController controller)
Called when entering text selection mode. abstract void
onExitTextSelectionMode(@NonNull() TextSelectionController controller)
Called when exiting text selection mode. -
-
Method Detail
-
onEnterTextSelectionMode
abstract void onEnterTextSelectionMode(@NonNull() TextSelectionController controller)
Called when entering text selection mode.
- Parameters:
controller
- Provided controller for text selection mode actions.
-
onExitTextSelectionMode
abstract void onExitTextSelectionMode(@NonNull() TextSelectionController controller)
Called when exiting text selection mode.
- Parameters:
controller
- Provided controller for text selection mode actions.
-
-
-
-