Java tutorial
//package com.java2s; import android.content.Context; import android.view.inputmethod.InputMethodManager; public class Main { /** * Show iME. * * @param context the context */ public static void showKeyboard(Context context) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_NOT_ALWAYS); } }