Here you can find the source of showInputMethodPicker(Context context)
public static void showInputMethodPicker(Context context)
//package com.java2s; import android.view.inputmethod.InputMethodManager; import android.content.Context; public class Main { public static void showInputMethodPicker(Context context) { ((InputMethodManager) context// ww w .ja va 2 s . co m .getSystemService(Context.INPUT_METHOD_SERVICE)) .showInputMethodPicker(); } }