gpt4 book ai didi

android - 在键盘按钮上完成后将光标焦点设置在android中的其他编辑文本上

转载 作者:行者123 更新时间:2023-11-30 00:10:43 26 4
gpt4 key购买 nike

我在 xml 文件中有以下 View

-线性布局
-Edittext (edone)
-编辑文本(edtwo)

Java 文件中的代码

edtwo.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if ((event != null && (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) || (actionId == EditorInfo.IME_ACTION_DONE)) {

edtwo.setText("");
edone.setText("");
InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);

edtwo.requestFocus();
}

return true;
}

return false;
}
});

单击键盘上的“完成”按钮后,光标要移至 edone 编辑文本字段,但光标仍集中在 edtwo 上。如何更改光标焦点。

最佳答案

你可以试试这个:

  edtwo.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
edtwo.setText("");
edone.setText("");
InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);

edone.requestFocus();
return true;
}

});

关于android - 在键盘按钮上完成后将光标焦点设置在android中的其他编辑文本上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48180973/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com