return sdkVersion >= 11;
}
/** Hide the soft keyboard if visible. */
public static void hideSoftKeyboard(Context ctx, View view) {
InputMethodManager manager = (InputMethodManager)
ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
if (null != manager)
manager.hideSoftInputFromWindow(view.getWindowToken(), 0);
}