Android键盘语言问题

时间:2012-08-28 13:13:49

标签: android keyboard

当用户选择EditText字段时,我想以编程方式更改键盘语言。

即:当用户点击EditText时,默认情况下会弹出英语键盘。 但我希望阿拉伯语键盘默认打开...

2 个答案:

答案 0 :(得分:3)

无法以编程方式更改用户的键盘设置。您唯一能做的就是建议用户更改它并帮助它这样做。例如,这将显示一个对话框,供他们更改键盘:

private void showInputMethodPicker() {
    InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE); 
    if (imeManager != null) {
        imeManager.showInputMethodPicker();
    } else {
        Toast.makeText(this, R.string.not_possible_im_picker, Toast.LENGTH_LONG).show();
    }
}

答案 1 :(得分:0)