当我加载一个片段两次时,它只是加载到之前加载的同一片段的内容之上。
我有这个代码加载它 -
Fragment newFragment = new GridFragment();
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.add(R.id.gridFrame, newFragment).commit();
// gridFrame is the FrameLayout over which I replace it with the fragment
如何刷新片段而不是在先前内容之上再次加载?
答案 0 :(得分:1)
使用.replace()
代替.add()
。