Java tutorial
//package com.java2s; import android.content.Context; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; public class Main { public static void closeKeyboard(EditText view) { view.clearFocus(); InputMethodManager imm = (InputMethodManager) view.getContext() .getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.RESULT_UNCHANGED_SHOWN); } }