EditText
当用户选择字段时,我想以编程方式更改键盘语言。
即:当用户点击时EditText
,默认弹出英文键盘。但我希望阿拉伯语键盘默认打开...
无法以编程方式更改用户的键盘设置。您唯一能做的就是建议用户更改它并帮助它这样做。例如,这将显示一个对话框供他们更改键盘:
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();
}
}
您可能可以使用 EditorInfo hintLocales: https ://developer.android.com/reference/android/view/inputmethod/EditorInfo.html#hintLocales