如何保存我的活动的状态
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 onPause() 中保存数据,并在需要时在 onResume() 中恢复数据。
Save your data in onPause(), and restore it in onResume() if needed.
您应该保存编辑文本输入字符串(覆盖这些方法)
,当用户返回时,您只需将字符串绑定到
http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle
You should save your edit text input string on (over ride those methods)
And when user returns, you just bind your string to edit text view on
http://developer.android.com/guide/topics/fundamentals/activities.html#Lifecycle