Example usage for android.text Selection selectAll

List of usage examples for android.text Selection selectAll

Introduction

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

Prototype

public static final void selectAll(Spannable text) 

Source Link

Document

Select the entire text.

Usage

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

/**
 * Convenience for {@link Selection#selectAll}.
 */
public void selectAll() {
    Selection.selectAll(getText());
}