Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.view.inputmethod.InputMethodManager; public class Main { /** * get the SoftInput state * * @param activity * @return if shown return true else return false */ public static boolean softInputIsShow(Activity activity) { if (activity == null) { return false; } InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); return imm.isActive(); } }