how to hide/close keyboard on android

h‮:sptt‬//www.lautturi.com
how to hide/close keyboard on android
View view = this.getCurrentFocus();

if (view != null) {  
    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
	
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
Created Time:2017-09-17 13:01:31  Author:lautturi