Start a Project

Fragments in Drawers

Fragments used as a navigation drawer is very efficient as you can change value and layout dynamically for the drawer. It helps you as on click of any option in the drawer you can change drawer content to show new value, especially updating of listview items is very easy.

So for adding fragment,  just add the container to the drawer layout you can add the <fragment> as well but then you can’t cahnge the layout and here we are changing layout on click of a button.

Now prepare two fragment classes and there layout as you require

layout_one.xml

layout_two.xml

Now make the fragment classes for both the layouts and in main activity dont forget to change the fragment on click of buttons and text.

And your layout will be changed with the onClick actions.

Exit mobile version