Android EditText的requestFocus()什么时候做

发布于 2024-10-04 02:25:18 字数 297 浏览 2 评论 0原文

我在滚动视图中有许多 EditText。在后台,这些字段链接到许多其他字段,并且布局定期(大约一秒一次)根据 EditText 中的值更新其文本字段。

问题是,如果一个 EditText 的焦点位于 ScrollView 的顶部,并且用户滚动视图完成(即聚焦的 EditText 离开屏幕),但如果对视图进行更新,则滚动视图会向上移动以聚焦视图顶部的 EditText。

我最接近解决这个问题的方法是使滚动视图在滚动时改变焦点,但这仍然具有相同的行为,但比例缩小了。

有谁知道我该如何阻止这种情况发生?

干杯, 马特

I have a number of EditTexts inside a scrollview. In the background these fields are linked to a number of other fields and regularly (once a second or so) the layout has it's textfields updated depending on the values in the EditText.

The problem is if one EditText has focus at the top of the ScrollView and the user scrolls the view done (i.e. so the focused EditText is off screen), but if the update is made to the views, the scroll view moves up to focus on the EditText at the top of the view.

The closest I have got to remedying this is to make the scroll view change focus when scrolling however this is still has the same behaviour but at a reduced scale.

Does anyone have an idea of how I can stop this from happening?

Cheers,
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫瑾少女 2024-10-11 02:25:18

您可以尝试在更新值的代码周围使用 EditText#setFocusable 。我还没有对此进行测试,但如果问题是当您使用 setText() 时它会获得焦点,它可能会有所帮助。

You can try using EditText#setFocusable around your code that updates the value. I haven't tested this but if the problem is that it is getting focus when you use setText() it may help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文