Android Studio (API 23) - 我想在多个活动中重用一个片段,但每个活动都有独特的布局
这可能吗?
本质上 -
我希望 ActivityA 使用布局 A 托管 FragmentA,并且希望 ActivityB 使用布局 B 托管 FragmentA。我似乎无法找到一种方便的方法。
谢谢你!
抱歉 - 我没有任何值得一看的示例代码!
Is this possible?
Essentially -
I want ActivityA to host FragmentA with layoutA, and I want ActivityB to host FragmentA with layoutB. I can't seem to figure out a way to do it conveniently.
Thank you!
Sorry - I don't have any example code handy that's worth looking at!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有看到在同一个片段文件中使用 2 个布局的意义,因为绑定视图并处理它会很大..是的,您可以根据传递给片段的任何标志来渲染不同的布局,如下所示
I don't see a point for 2 layouts in same fragment file because binding the views and handle it will be big .. yes you can render different layouts depending on any flag you pass to fragment like this
您可以检查 onCreateView 内的活动类并分配良好的布局
You can check the activity class inside the onCreateView and assign the good layout