如何保存活动状态以继续用户离开的位置?

发布于 2024-11-14 03:49:04 字数 112 浏览 2 评论 0原文

如何保存活动的实例状态。例如,用户打开应用程序并单击按钮。形成一个新视图,用户输入一些信息并移至该活动中的下一个屏幕。之后返回应用程序的主菜单。如何保存用户返回主菜单之前的状态。

预先感谢大家!

How do you save an instance state of an activity. For instance a user opens up a application and clicks a button. A new view is formed and the user types in some information and moves to the next screen in that activity. After that goes back to the main menu of the app. how do you save where the state was before the user went back to the main menu.

Thanks in advance everyone!

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

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

发布评论

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

评论(1

甜中书 2024-11-21 03:49:04

http://developer.android.com/reference/android/app/Activity.html

另外,方法
onSaveInstanceState(Bundle) 被调用
在将活动放入这样的环境之前
后台状态,让您保存
去掉任何动态实例状态
您的活动放入给定的捆绑包中,
稍后收到
onCreate(Bundle) 如果活动需要
重新创建。

http://developer.android.com/reference/android/app/Activity.html

In addition, the method
onSaveInstanceState(Bundle) is called
before placing the activity in such a
background state, allowing you to save
away any dynamic instance state in
your activity into the given Bundle,
to be later received in
onCreate(Bundle) if the activity needs
to be re-created.

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