片段代码中的加载活动
我们可以在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是这是不可能的。您必须创建一个片段活动,用于引用您创建的任何片段。
这是一个很好的起点:
片段示例
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
您不可能无法在
fragment
中添加Activity
。Fragment
是Activity
的 UI 组件的一部分。请参阅下面的链接
Android 中的片段文档
It's not possible you cannot add
Activity
inside afragment
.Fragment
is part of UI component ofActivity
.Refer below link
Docs for fragment in Android