0

有可能自己刷新一个片段吗?像一个活动

context.finish();
context.startActivity(context.getIntent());
4

1 回答 1

6

我还没有测试过,但也许像

getActivity().getSupportFragmentManager().beginTransaction()
                .replace(R.id.the_fragment_container, new MyFragment())
                .commit();
于 2013-08-29T18:12:15.563 回答