Example usage for android.text Selection extendSelection

List of usage examples for android.text Selection extendSelection

Introduction

In this page you can find the example usage for android.text Selection extendSelection.

Prototype

public static final void extendSelection(Spannable text, int index) 

Source Link

Document

Move the selection edge to offset index.

Usage

From source file:com.fenlisproject.elf.core.widget.ExtendedEditText.java

/**
 * Convenience for {@link Selection#extendSelection}.
 */
public void extendSelection(int index) {
    Selection.extendSelection(getText(), index);
}