从选项卡活动内部打开另一个活动
我创建了一个选项卡式应用程序,其中有三个选项卡。 在第一个活动中,我打开一个名为 Home.class 的类,在 Home.class 中,我想启动另一个应该在该选项卡本身中打开的活动(是否可能)。 请帮忙。
I created a tabbed application in which I have three tabs.
In the first activity I am opening a class named Home.class and inside the Home.class I want to start another activity that should open in that tab itself is it possible.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ActivityGroup 已弃用,尝试使用 片段 和 FragmentManager
ActivityGroup is deprecated, try to use Fragment and FragmentManager
要在一个选项卡中启动多个 Activity,您需要使用
ActivityGroup
扩展选项卡。当你开始新的 Activity 时,你需要使用startChildActivity
To start multiple Activity in one tab, you need to extend your tab with
ActivityGroup
. and when are you starting new Activity you need to usestartChildActivity
在 TabHost 中使用 Android ActivityGroup 来显示不同的 Activity
Use Android ActivityGroup within TabHost to show different Activity