2

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

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

4

2 回答 2

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();
    }
}
于 2012-08-28T13:17:23.330 回答
0

您可能可以使用 EditorInfo hintLocales: https ://developer.android.com/reference/android/view/inputmethod/EditorInfo.html#hintLocales

来自https://issuetracker.google.com/issues/79549909

于 2018-05-25T14:19:49.083 回答