gpt4 book ai didi

Android - 表单

转载 作者:行者123 更新时间:2023-11-29 22:18:11 27 4
gpt4 key购买 nike

在我的应用程序上有一个包含 2 个字段和一个保存按钮的表单。

在我的 onClick 结束时我需要什么来将光标返回到第一个字段。

我有这个来清除它们

        txtData.setText("");
txtData2.setText("");

但光标始终停留在底部区域

问候

最佳答案

您是否尝试过编程调用 requestFocus在用户单击您的保存按钮后您希望获得焦点的 View 上?例如,您可以在 onClick 方法中执行如下操作:

public void onClick(View){
//do other stuff like saving and clearing the fields
//then request the focus be switched back to the first text field.
txtData.requestFocus();
}

关于Android - 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7988560/

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