Sotti
Sotti

Reputation: 14389

Android: Expandable Navigation Drawer with custom row views

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!!

Upvotes: 2

Views: 16127

Answers (4)

Ranjith Subramaniam
Ranjith Subramaniam

Reputation: 119

https://github.com/PrashamTrivedi/DrawerLayoutTest

This URL project doesn't have separate layout for list_view with menu & sub menu. That's why we are unable to edit the code.

Is there any code with separate layout for menu/sub menu. Also if you anyone know horizontal sub menu. Please provide the link.

Upvotes: 0

Nantaphop
Nantaphop

Reputation: 564

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.

Upvotes: 1

Sotti
Sotti

Reputation: 14389

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

This is exactly what I was looking for.

Upvotes: 1

user2726824
user2726824

Reputation: 21

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

Upvotes: 1

Related Questions