gpt4 book ai didi

android - 在android中编辑文本焦点

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:53:04 25 4
gpt4 key购买 nike

在我的应用程序中,我按如下方式编辑文本。

EditText1   EditText2
EditText3 EditText4
EditText5 EditText6

我在 xml 中声明了 android:imeOptions="actionNext" 并且我也写了

          editText1.setOnEditorActionListener(new EditText.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
// TODO Auto-generated method stub
if (actionId == EditorInfo.IME_ACTION_DONE || actionId == EditorInfo.IME_ACTION_NEXT) {
editText2.requestFocus();

return false;
}
return false;
}
});

现在在编辑文本 1 的虚拟键盘中,如果我按下下一步,我将专注于编辑文本 3 而不是编辑文本 2 等。

我怎样才能关注 EditText2 而不是 edittext3对于我的应用程序用户,只按“下一步或完成”,他从不使用轨迹球。

最佳答案

您可以尝试在 EditTexts 中添加 android:nextFocusDown 属性。

关于android - 在android中编辑文本焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7991234/

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