how to move from one fragment to another fragment on button click

前端 未结 6 1940
失恋的感觉
失恋的感觉 2021-01-16 11:43

I am using the SherlockFragments library for the sliding menu.I have list of items as menu when I click on item fragment get opened as an activity but it is a fragment.Now

6条回答
  •  轮回少年
    2021-01-16 11:55

    FragmentManager fragmentManager = getFragmentManager();
                    fragmentManager
                            .beginTransaction()
                            .replace(R.id.frame_container,
                                    new TeacherFragment()).commit();
    

提交回复
热议问题