List of usage examples for android.text Selection selectAll
public static final void selectAll(Spannable text)
From source file:com.fenlisproject.elf.core.widget.ExtendedEditText.java
/** * Convenience for {@link Selection#selectAll}. */ public void selectAll() { Selection.selectAll(getText()); }