Here you can find the source of hiddenKeyboard(Activity activity)
public static void hiddenKeyboard(Activity activity)
//package com.java2s; import android.app.Activity; import android.view.inputmethod.InputMethodManager; public class Main { public static void hiddenKeyboard(Activity activity) { try {/*www.j a va 2 s . c om*/ InputMethodManager input = (InputMethodManager) activity .getSystemService(Activity.INPUT_METHOD_SERVICE); input.hideSoftInputFromWindow(activity.getCurrentFocus() .getWindowToken(), 0); } catch (Exception e) { e.printStackTrace(); } } }