How to open a Fragment on button click from a fragment in Android

后端 未结 4 1752
醉梦人生
醉梦人生 2020-11-28 09:12

I have some button on my HomeFragment i want to to open a Fragment on button click from a fragment . Something like Navigation. I am trying with bellow code but did not work

4条回答
  •  萌比男神i
    2020-11-28 09:37

    You can use it

    NextFragment nextFrag= new NextFragment();
    getActivity().getSupportFragmentManager().beginTransaction()
                 .replace(R.id.Layout_container, nextFrag, "findThisFragment")
                 .addToBackStack(null)
                 .commit();
    

提交回复
热议问题