同一活动的多个实例
你好,我是安卓新手,我需要你的帮助。 我有一项家庭活动和一项朋友活动。我在家创建朋友活动。我怎样才能有多个朋友实例,保存他们的状态并在他们之间切换。请帮我。
hello I am new to android and I need your help.
I have a home activity and one friend activity. From home I am creating friend activity. how can I have more than one instance of friend , save their state and switch between them. please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处查看 Android 中如何处理任务的活动
我认为不要创建新实例,而是将状态保存在 Sharedpreferences 中,然后在您想要更改时使用保存的状态。
还有一种方法是在您的家庭活动中调用此方法
,每次创建朋友类的新实例,然后回到家时只需传递
可以在家庭活动的回调方法中检查的方法。
check here How activiity an task handaled in android
i think dont create new instances instead save the state in Sharedpreferences and then use that saved state while you want to change.
also another way in your home activity call this method
and every time create new instance of friend class and while coming back to home just pass the
which can be checked at call back method of Home activity.