답변

7

Android 프레임 워크는 이미이 기능을 제공합니다. 다음과 같이 inputmethodPicker 대화 상자를 표시 할 수 있습니다.

InputMethodManager imm = (InputMethodManager) 
      getSystemService(Context.INPUT_METHOD_SERVICE); 
    imm.showInputMethodPicker(); 
관련 문제