如何重置或重新加載碎片容器,以使其變爲空。 我有一個主詳細信息視圖,我想重置詳細信息容器,以清空菜單項click.This工程在某些情況下,並沒有在一些。重置/重新加載碎片容器
NullFragment fragment = new NullFragment();
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager
.beginTransaction();
fragmentTransaction.replace(R.id.item_detail_container,
fragment);
int count = fragmentManager.getBackStackEntryCount();
fragmentManager.popBackStackImmediate(count, 0);
fragmentTransaction.commit();
請記錄,在這種情況下,它不起作用。 –
你不重置容器。您需要重置容器內的片段。 – bofredo