Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.view.View; import android.view.inputmethod.InputMethodManager; public class Main { /** * Hides the SoftKeyboard input careful as if you pass a view that didn't open the * soft-keyboard it will ignore this call and not close * * @param context the context / usually the activity that the view is being shown within * @param v the view that opened the soft-keyboard */ public static void requestHideKeyboard(Context context, View v) { InputMethodManager imm = ((InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE)); imm.hideSoftInputFromWindow(v.getWindowToken(), 0); } }