同一活动的多个实例

发布于 2024-12-05 04:33:33 字数 85 浏览 0 评论 0原文

你好,我是安卓新手,我需要你的帮助。 我有一项家庭活动和一项朋友活动。我在家创建朋友活动。我怎样才能有多个朋友实例,保存他们的状态并在他们之间切换。请帮我。

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 技术交流群。

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

发布评论

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

评论(2

月光色 2024-12-12 04:33:33
ActivityGroup --> getLocalActivityManager().startActivity(id, intent);
ActivityGroup --> getLocalActivityManager().startActivity(id, intent);
雨夜星沙 2024-12-12 04:33:33

在此处查看 Android 中如何处理任务的活动

我认为不要创建新实例,而是将状态保存在 Sharedpreferences 中,然后在您想要更改时使用保存的状态。

还有一种方法是在您的家庭活动中调用此方法

startActivityforResult(intent,code);

,每次创建朋友类的新实例,然后回到家时只需传递

setResult(code);

可以在家庭活动的回调方法中检查的方法。

onActivityResult(); 

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

startActivityforResult(intent,code);

and every time create new instance of friend class and while coming back to home just pass the

setResult(code);

which can be checked at call back method of Home activity.

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