Class Selection

java.lang.Object
icyllis.modernui.text.Selection

@ParametersAreNonnullByDefault public final class Selection extends Object
Utility class for manipulating cursors and selections in CharSequences. A cursor is a selection where the start and end are at the same offset.
  • Field Details Link icon

    • SELECTION_START Link icon

      public static final Object SELECTION_START
    • SELECTION_END Link icon

      public static final Object SELECTION_END
  • Method Details Link icon

    • getSelectionStart Link icon

      public static int getSelectionStart(CharSequence text)
      Return the offset of the selection anchor or cursor, or -1 if there is no selection or cursor.
    • getSelectionEnd Link icon

      public static int getSelectionEnd(CharSequence text)
      Return the offset of the selection edge or cursor, or -1 if there is no selection or cursor.
    • setSelection Link icon

      public static void setSelection(Spannable text, int start, int stop)
      Set the selection anchor to start and the selection edge to stop.
    • setSelection Link icon

      public static void setSelection(Spannable text, int index)
      Move the cursor to offset index.
    • selectAll Link icon

      public static void selectAll(Spannable text)
      Select the entire text.
    • extendSelection Link icon

      public static void extendSelection(Spannable text, int index)
      Move the selection edge to offset index.
    • removeSelection Link icon

      public static void removeSelection(Spannable text)
      Remove the selection or cursor, if any, from the text.
    • moveUp Link icon

      public static boolean moveUp(Spannable text, Layout layout)
      Move the cursor to the buffer offset physically above the current offset, to the beginning if it is on the top line but not at the start, or return false if the cursor is already on the top line.
    • moveDown Link icon

      public static boolean moveDown(Spannable text, Layout layout)
      Move the cursor to the buffer offset physically below the current offset, to the end of the buffer if it is on the bottom line but not at the end, or return false if the cursor is already at the end of the buffer.
    • moveLeft Link icon

      public static boolean moveLeft(Spannable text, Layout layout)
      Move the cursor to the buffer offset physically to the left of the current offset, or return false if the cursor is already at the left edge of the line and there is not another line to move it to.
    • moveRight Link icon

      public static boolean moveRight(Spannable text, Layout layout)
      Move the cursor to the buffer offset physically to the right of the current offset, or return false if the cursor is already at at the right edge of the line and there is not another line to move it to.
    • extendUp Link icon

      public static boolean extendUp(Spannable text, Layout layout)
      Move the selection end to the buffer offset physically above the current selection end.
    • extendDown Link icon

      public static boolean extendDown(Spannable text, Layout layout)
      Move the selection end to the buffer offset physically below the current selection end.
    • extendLeft Link icon

      public static boolean extendLeft(Spannable text, Layout layout)
      Move the selection end to the buffer offset physically to the left of the current selection end.
    • extendRight Link icon

      public static boolean extendRight(Spannable text, Layout layout)
      Move the selection end to the buffer offset physically to the right of the current selection end.
    • extendToLeftEdge Link icon

      public static boolean extendToLeftEdge(Spannable text, Layout layout)
    • extendToRightEdge Link icon

      public static boolean extendToRightEdge(Spannable text, Layout layout)
    • moveToLeftEdge Link icon

      public static boolean moveToLeftEdge(Spannable text, Layout layout)
    • moveToRightEdge Link icon

      public static boolean moveToRightEdge(Spannable text, Layout layout)
    • moveToPreceding Link icon

      public static boolean moveToPreceding(Spannable text, WordIterator iter, boolean extendSelection)
    • moveToFollowing Link icon

      public static boolean moveToFollowing(Spannable text, WordIterator iter, boolean extendSelection)