List of usage examples for android.view.inputmethod InputMethodManager HIDE_NOT_ALWAYS
int HIDE_NOT_ALWAYS
To view the source code for android.view.inputmethod InputMethodManager HIDE_NOT_ALWAYS.
Click Source Link
From source file:Main.java
public static void toggleKeyboard(Context context) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); if (imm.isActive()) { imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS); }//ww w .j a v a 2s . c o m }
From source file:Main.java
public static void toggleKeyboard(Activity activity) { InputMethodManager inputMethodManager = (InputMethodManager) activity .getSystemService(Context.INPUT_METHOD_SERVICE); if (inputMethodManager.isActive()) { inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); }//from www . j a va 2 s. c o m }
From source file:Main.java
public static void hideIME(Activity context, boolean bHide) { if (bHide) {/*from www . j a v a 2 s . c om*/ try { ((InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(context.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } catch (NullPointerException npe) { npe.printStackTrace(); } } else { // show IME try { ((InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE)) .showSoftInput(context.getCurrentFocus(), InputMethodManager.SHOW_IMPLICIT); } catch (NullPointerException npe) { npe.printStackTrace(); } } }
From source file:Main.java
public static void HideIme(Activity activity) { if (activity.getCurrentFocus() != null) { InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); }/*from w ww. java 2 s . c o m*/ }
From source file:Main.java
public static void closeSoftInput(Context context) { InputMethodManager inputMethodManager = (InputMethodManager) context .getSystemService(Context.INPUT_METHOD_SERVICE); if (inputMethodManager != null && ((Activity) context).getCurrentFocus() != null) { inputMethodManager.hideSoftInputFromWindow(((Activity) context).getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); }// w ww .ja va 2 s . c o m }
From source file:Main.java
public static void hideSoftKeyBoard(Activity activity) { final View v = activity.getWindow().peekDecorView(); if (v != null && v.getWindowToken() != null) { try {/*from ww w.j a v a 2 s . c o m*/ ((InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } catch (Exception e) { e.printStackTrace(); } } }
From source file:Main.java
/** * Helper Method to hide the keyboard//w w w.jav a 2s . co m */ public static void hideKeyboard(Activity activity) { View view = activity.getCurrentFocus(); if (view != null) { ((InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } }
From source file:Main.java
public static void showSoftInput(Context context) { InputMethodManager inputMethodManager = (InputMethodManager) context .getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); }
From source file:com.joeyturczak.jtscanner.utils.Utility.java
/** * Hides the keyboard/*from ww w. j a v a2s . c o m*/ * Credit: http://stackoverflow.com/questions/1109022/close-hide-the-android-soft-keyboard */ public static void hideKeyboard(Activity activity) { // Check if no view has focus: View view = activity.getCurrentFocus(); if (view != null) { InputMethodManager inputManager = (InputMethodManager) activity .getSystemService(Context.INPUT_METHOD_SERVICE); inputManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } }
From source file:com.lixplor.fastutil.utils.control.KeyboardUtil.java
public static void hide(@NonNull View view) { view.clearFocus(); sInputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); }