Android Utililty Methods View Close

List of utility methods to do View Close

Description

The list of methods to do View Close are organized into topic(s).

Method

voidcloseSoftInput(Context context, View focusingView)
close Soft Input
InputMethodManager imm = (InputMethodManager) context
        .getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(focusingView.getWindowToken(),
        InputMethodManager.RESULT_UNCHANGED_SHOWN);