android how to close the keyboard

android how to close the keyboard
View view = this.getCurrentFocus();
if (view != null) {  
    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
Source‮ual.www:‬tturi.com
Created Time:2017-09-03 07:54:54  Author:lautturi