如何保存我的活动的状态

发布于 2024-11-19 17:46:59 字数 188 浏览 7 评论 0原文

我有一个 EditText ,其下有一个列表视图。 所以它的工作原理是这样的 - 当您在编辑文本中键入某些内容时,它会显示列表中与上面的文本匹配的项目。 无论如何,我需要保存列表视图的状态。意味着如果用户离开此屏幕并返回,列表视图应具有相同的状态,并且编辑文本应填充相同的文本。希望你明白了。

请告诉我如何实现这一目标。

I have an EditText followed by a list view under it.
So it works like this - when u type something in the edit text it shows items from the list which match the text above.
Anyway I need to save the state of list view. means if the user navigates away from this screen and comes back the list view should have the same state and the edit text should be filled with the same text. Hope u got it.

Please tell me how to achieve this.

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

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

发布评论

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

评论(2

倾其所爱 2024-11-26 17:46:59

在 onPause() 中保存数据,并在需要时在 onResume() 中恢复数据。

Save your data in onPause(), and restore it in onResume() if needed.

嗼ふ静 2024-11-26 17:46:59

您应该保存编辑文本输入字符串(覆盖这些方法)

protected void onPause()

,当用户返回时,您只需将字符串绑定到

protected void onResume()

http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle

You should save your edit text input string on (over ride those methods)

protected void onPause()

And when user returns, you just bind your string to edit text view on

protected void onResume()

http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle

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