neha1903 / FrameLayoutFragment

Display a Custom fragment in Frame Layout

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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();

About

Display a Custom fragment in Frame Layout


Languages

Language:Java 100.0%