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.
我正在使用框架布局在屏幕的同一部分有多个片段。
所以,我有一个框架布局标签,然后是 XML 中的几个片段标签。所以,我可以看到这些片段的重叠。
我想隐藏除我要显示的片段之外的所有片段。我应该在哪里调用隐藏功能?
如果您使用支持库进行片段使用getSupportFragmentManager().beginTransaction().replace(<resource id for frame layout>, <new fragment>).commit()
getSupportFragmentManager().beginTransaction().replace(<resource id for frame layout>, <new fragment>).commit()
这将用新片段替换附加到此框架布局的所有片段。