Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 Android 应用程序。我必须将一个活动转换为片段。但是该活动是在清单文件中注册的,带有一些意图过滤器。如何使用意图过滤器将此活动转换为片段。请帮助我的朋友。
片段需要包含在 Activity 中,因此您不能在片段本身上放置意图过滤器。但是,您可以将所需的意图过滤器放置在包含片段的 Activity 上。
最后我找到了我怀疑的答案。解决方案是向父 fragmentActivity 注册意图过滤器。