Open top menu

 

How to implement ExtractEditText in android ?

In this blog explain how to used ExtractEditText in android. The ExtractEditText extends EditText class. the widgets used android API Level 3.Specialization of EditText for showing and intracting with the extract text in a full screen input method.


private boolean extractedTextModeWillBeStarted() {
    if (!(this instanceof ExtractEditText)) {
        final InputMethodManager imm = InputMethodManager.peekInstance();
        return  imm != null && imm.isFullscreenMode();
    }
    return false;
}











0 comments