Android - 刷新/重新启动以前的活动
当用户从活动返回到我的程序的主菜单时,您使用什么类;刷新/重新启动主菜单(更新它)?
When a user returns from an activity to the main menu of my program, what class do you use to for example; refresh/restart the main menu (update it)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于...如果您启动了第二个活动并想要更新第一个活动,您应该:
startActivityForResult
方法启动第二个活动onActivityResult
code> 您的第一个活动的方法。如果情况并非如此,您可以尝试将刷新代码放在
onResume
中。It depends... if you started the second activity and want to update the first, you should:
startActivityForResult
method to start the second activityonActivityResult
method of your first activity.If that's not the scenario, you can try to place the refresh code in
onResume
.