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

前端 未结 6 1950
失恋的感觉
失恋的感觉 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 12:13

    It's simple Only three line code...

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

提交回复
热议问题