有可能刷新他自己的片段吗?像活动一样
context.finish();
context.startActivity(context.getIntent());
答案 0 :(得分:6)
我没有测试过,但可能是
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.the_fragment_container, new MyFragment())
.commit();