How to move from one fragment to another fragment on click of an ImageView in Android?

后端 未结 6 1310
不知归路
不知归路 2020-12-03 10:16

I have an ImageView. I want to move from one fragment to another fragment on a click of an Imageview, the same way like we can move from one activity to another using

<
6条回答
  •  生来不讨喜
    2020-12-03 11:03

    Add this code where you want to click and load Fragment. I hope it's work for you.

    
    Fragment fragment = new yourfragment();
            FragmentManager fragmentManager = getActivity().getSupportFragmentManager();
            FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
            fragmentTransaction.replace(R.id.fragment_container, fragment);
            fragmentTransaction.addToBackStack(null);
            fragmentTransaction.commit();
    
    

提交回复
热议问题