TabWidget 活动处理 - 它每次都会创建一个新活动吗?

发布于 2024-08-30 02:02:24 字数 311 浏览 6 评论 0原文

当 TabWidget 使用意图为每个选项卡指定目标 Activity 时,除了默认操作之外,是否对 Activity Stack 上的这些 Activity 有任何特殊处理?

例如,如果我的应用程序有选项卡 A、B 和 C,并且我按此顺序单击它们——A、B、A、C、A、B——活动堆栈将如何变化?

我对默认操作的理解是,如果每次在意图上调用 startActivity() ,堆栈就会不断加载活动的新实例:A、AB、ABA、ABAC、ABACA、ABACAB

很难相信就是这样虽然有效...似乎这会浪费资源并且可能是无止境的。谁能告诉我这实际上是如何运作的?

When a TabWidget is using intents to designate the target Activity for each tab, is there any special handling of those Activities on the Activity Stack outside of the default operation?

For Instance, if my app has tabs A, B, and C, and I click them in this order––A, B, A, C, A, B––how will the Activity stack change?

My understanding of the default operation, if startActivity() is called each time on the intent, would have the Stack keep loading up new instances of the activities: A, AB, ABA, ABAC, ABACA, ABACAB

It's hard to believe that's how it works though... Seems like it would be a waste of resources and could be endless. Can anyone tell me how this will actually work?

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

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

发布评论

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

评论(2

往事风中埋 2024-09-06 02:02:24

例如,如果我的应用程序有选项卡 A、B,
和 C,我在这个中单击它们
顺序——A、B、A、C、A、B——如何
活动堆栈发生变化?

TabWidget 的内部活动不会进入堆栈。

我对默认的理解
操作,如果 startActivity() 是
每次按意图调用时,都会
让堆栈不断加载新的
活动实例:A、AB、
ABA、ABAC、ABACA、ABACAB

TabWidget 不会在每次单击选项卡时创建新活动。

For Instance, if my app has tabs A, B,
and C, and I click them in this
order––A, B, A, C, A, B––how will the
Activity stack change?

The TabWidget's inner activities do not go on the stack.

My understanding of the default
operation, if startActivity() is
called each time on the intent, would
have the Stack keep loading up new
instances of the activities: A, AB,
ABA, ABAC, ABACA, ABACAB

TabWidget does not create new activities on each tab click.

走过海棠暮 2024-09-06 02:02:24

Tabwidget 负责管理活动。所有未显示的活动都会暂停,并在 Tabhost 中选择活动时恢复。

The Tabwidget is responsible for managing the Activities. All Activities that are not shown are paused and are resumed at the moment the Activity is selected in the Tabhost.

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