片段代码中的加载活动

发布于 2024-12-21 09:12:14 字数 188 浏览 1 评论 0原文

我们可以在fragment中加载一个activity(特别是在onCreateView中)吗?我们可以启动活动以便调用它的事件,而不是通过充气器创建视图吗?

例如

,我们可以启动使用“tabactivity”作为布局的活动,而不是使用“inflater.inflate(R.layout.tabactivity, null)”吗?

Can we load an activity (specifically in onCreateView) in fragment ? Instead of creating view by inflater, can we launch activity so it's events gets called ?

For e.g.

Instead of using "inflater.inflate(R.layout.tabactivity, null)", can we launch activity which uses "tabactivity" as layout ?

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

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

发布评论

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

评论(2

别把无礼当个性 2024-12-28 09:12:14

不幸的是这是不可能的。您必须创建一个片段活动,用于引用您创建的任何片段。

这是一个很好的起点:

片段示例

Unfortunately this is not possible. You must create a Fragment Activity that will be used to refer to any fragment you create.

This is a good place to start:

Fragments Examples

如果没结果 2024-12-28 09:12:14

您不可能无法在 fragment 中添加 Activity
FragmentActivity 的 UI 组件的一部分。

请参阅下面的链接

Android 中的片段文档

It's not possible you cannot add Activity inside a fragment.
Fragment is part of UI component of Activity.

Refer below link

Docs for fragment in Android

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