在我的应用程序中,我有一个WebView
包含几个输入字段的站点。当应用程序内部发生某些事件时,我想关注第一个输入字段并打开键盘。由于我的宿主应用程序在 React Native 中,我编写了一个打开键盘的原生模块
InputMethodManager inputMethodManager = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInputFromWindow(mContext.getCurrentActivity().getCurrentFocus().getWindowToken(), InputMethodManager.SHOW_FORCED, 0);
现在我希望返回按钮会说“下一步”而不是“完成”。如果我要使用EditText
我会设置imeOptions="actionNext"
. 由于我没有任何EditText
我可以控制的东西,我该如何更改键盘上返回键的文本?