Here you can find the source of showKeyboard(Context ctx)
static public void showKeyboard(Context ctx)
//package com.java2s; import android.content.Context; import android.view.inputmethod.InputMethodManager; public class Main { static public void showKeyboard(Context ctx) { InputMethodManager imm = (InputMethodManager) ctx .getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0); }// ww w. j a v a 2 s.c om }