Just started to work with android and I cannot find a good example for a listview with two levels. I came across the ExpandableListView, but this it not the list I m looking for.
Basically, I want to build a list, which shows a topic like a genre (f.e. comedy, drama..) and if you click on the genre, it should open a list, where only the movies of the specific genre are shown (f.e. click on comedy -> “new list” with only comedy-movies is shown, so the genres aren’t shown anymore)
ExpandableListView creates something like a Node Tree, which doesn t fit my needs. Anyone any good examples or recommendations?
Have one activity show the top level. When the user clicks on it, start up another activity to show the second level.