Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 428 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 428 Bytes

FrameLayoutFragment

Display a Custom fragment in Frame Layout

            FragmentManager fragmentManager = getSupportFragmentManager();
            FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
            CustomFragment hello = new CustomFragment();
            fragmentTransaction.add(R.id.fragment_container, hello, "HELLO");
            fragmentTransaction.commit();