Multilevel category navigation in android

I am currently working on an application that is a mobile version of an online store. The online store has a large number of products, such as 10 thousand, which are constantly growing. To make it easier to navigate and browse the web, we usually use tiered category navigation. For example, out of the main top categories, there may be 4 sub-levels of categorization. How can I implement this in android. ExpandableListView

doesn't really help me with this because it supports two-level categorization and nothing more. I am also familiar with the listView

Categorization implementation in NavigationDrawer

, but I haven't found a solution for this yet.

Any suggestions would be more than welcome.

+3


source to share





All Articles