为片段设置新布局
是否可以以类似于 Activity.setContentView 的方式为片段设置新布局?或者更改片段布局的唯一方法是替换它,并在 onCreateView()
期间膨胀不同的布局?
Is it possible to set a new layout for a fragment, in a way similar to Activity.setContentView? Or the only way to change the layout of a fragment is to replace it, and inflate a different layout during onCreateView()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是否定的。到目前为止我还没有发现fragment有多大用处,唯一好的就是它有自己的生命周期方法。缺点是片段转换是一个待处理的意图,有时可能会导致问题。
The answer is no. So far I have not found much use with fragments, the only thing good is that it has its own life cycle methods. The draw back is that the fragment transition is a pending intent, that can cause problems sometimes.