How to open select input mode on keyboard's event

android, android-activity, android-intent, android-softkeyboard

Solution

Android Framework already provides this functionality. you can show inputmethodPicker dialog like this

InputMethodManager imm = (InputMethodManager)
            getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.showInputMethodPicker();

Problem

I have a keyboard that works and I would to implement a method into "onLongPress(..)" to open a default android dialog to change input mode. Maybe I have to launch an activity?

Original source