Android IMEI Get showInputMethodPicker(Context context)

Here you can find the source of showInputMethodPicker(Context context)

Description

show Input Method Picker

Declaration

public static void showInputMethodPicker(Context context) 

Method Source Code

//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();
    }
}

Related

  1. getIMEI(Context context)
  2. getIMEI(Context context)
  3. getIMEI(Context context)
  4. getIMEI(Context context)
  5. showInputMethodSettingsPage(Context context)