Android: Expandable Navigation Drawer with custom row views

16,011

Solution 1

What I've done --> http://goo.gl/KPmxbL

This is exactly what I was looking for.

Solution 2

Here an example of slide list item https://github.com/tjerkw/Android-SlideExpandableListView

Solution 3

There is no issue with navigation drawer. All you have to so is find some tutorial how to create an expandable ListView because Navigation Drawer is just a ViewGroup which can contain any view.

Share:
16,011
Sotti
Author by

Sotti

Android Engineer

Updated on June 04, 2022

Comments

  • Sotti
    Sotti almost 2 years

    I'm trying to do a navigation drawer menu with expandable elements like this --> http://goo.gl/SkMU8N

    I had no idea so I started by doing something like this one (not mine).

    https://github.com/PrashamTrivedi/DrawerLayoutTest

    The problem is that those rows are simple text and they looks horrible.

    I want to know how to modify the Adapter (or whatever) to attach my own xml files like you do with the normal drawer (example here --> http://goo.gl/phAJy).

    Thanks a lot!!