如何将参数从活动 A 传递到 TabHost(B 活动)的选项卡?

发布于 2024-11-26 01:10:17 字数 61 浏览 0 评论 0原文

我正在尝试将参数从活动 Main 传递到 MyTabWidget 活动的选项卡。

怎么做呢?

i'm trying to pass a parameter from a activity Main, to the tabs of a MyTabWidget activity.

How to do it?

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

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

发布评论

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

评论(2

西瓜 2024-12-03 01:10:17

将数据添加到您要启动 MyTabWidget 活动的 Intent,并在 onCreate() 中获取数据。

放置示例

myIntent.putInt("MyInt", 2);

在 onCreateMethod() 中获取示例

getParent().getIntent().getExtra().getInt("MyInt");代码>

Add data to the intent you are starting MyTabWidget activity and in onCreate() get the data.

Put example

myIntent.putInt("MyInt", 2);

Get example in onCreateMethod()

getParent().getIntent().getExtra().getInt("MyInt");

迟到的我 2024-12-03 01:10:17

一种方法是从主 Activity 发送广播,并在 TabActivity 中注册一个 BroadcastReceiver。我不认为这是最好的解决方案,但我找不到其他有效的解决方案。

One way is to send a broadcast from the main activity and to register a BroadcastReceiver in your TabActivity. I don't think it is the best solution, but I couldn't find anything else that worked.

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