List of usage examples for android.content Context INPUT_METHOD_SERVICE
String INPUT_METHOD_SERVICE
To view the source code for android.content Context INPUT_METHOD_SERVICE.
Click Source Link
From source file:Main.java
public static void showKeyboard(Activity _activity, View _view) { InputMethodManager inputMethodManager = (InputMethodManager) _activity .getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.showSoftInput(_view, 0); }
From source file:Main.java
public static void showSoftKeyBoard(Context context, View... views) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); if (views != null) { for (View view : views) { if (view != null) { imm.showSoftInput(view, InputMethodManager.SHOW_FORCED); }//w w w . j a v a 2 s . co m } } }
From source file:Main.java
public static void showKeyBoard(Activity activity) { if (activity != null) { InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0); }// w ww .j a va2 s .co m }
From source file:Main.java
public static void hideSoftInput(Context context, View view) { if (view != null && view.getWindowToken() != null) { InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(view.getWindowToken(), 0); }//from www . j ava 2s.c o m }
From source file:Main.java
public static void hideKeyboard(Activity activity, View view) { InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(view.getWindowToken(), 0); }
From source file:Main.java
public static void hideKeyboard(Activity activityRef, EditText editTextView) { //hide keyboard InputMethodManager imm = (InputMethodManager) activityRef.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(editTextView.getWindowToken(), 0); }
From source file:Main.java
public static void hideSoftKeyboard(View view) { Context context = view.getContext(); InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(view.getWindowToken(), 0); }
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(), 2); }
From source file:Main.java
public static void showSoftInput(Activity activity) { InputMethodManager inputMethodManager = (InputMethodManager) activity .getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); }
From source file:Main.java
public static void showInput(View view) { if (view == null) return;//from ww w. j av a 2s . c om InputMethodManager inputMethodManager = (InputMethodManager) view.getContext() .getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.showSoftInput(view, InputMethodManager.SHOW_FORCED); }