I have a DrawerLayout menu made up of several elements. When the user chooses the option "Add new session" inside the menu, a form appears inside said DrawerLayout menu (by changing its visibility to VISIBLE) where the user can input his information. When the user clicks on "accept", the form disappears by changing its visibility to GONE.
This form is a layout of its own which is inflated from a fragment.
Is this good practice? What other methods are out there to achieve the same results?