Java tutorial
//package com.java2s; //License from project: Apache License import android.app.Activity; import android.view.inputmethod.InputMethodManager; public class Main { /***************************************************** * ---------------- * Soft keyboard * -------------------- * * * ****************************************************/ public static void hideKeyboard(Activity activity) { if (activity != null) { InputMethodManager imm = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(activity.getWindow().getDecorView().getWindowToken(), 0); } } }