The endless adapter that I’ve used in my code, doesn’t stop expecting data even if I am out of it. Thus the throbbing symbol, which is the loading symbol here, keeps on circling expecting some data.
How do I stop it? How do I make the endless adapter know that I’m out of data?
Also, I would like to tweak the adapter so that it can use multiple lists. Is it possible? By multiple lists, I mean list embedded inside another list. If yes, is there an example or any ideas as to how to do it?
Quoting the documentation:
No. Android does not support the notion of lists inside of lists. You are welcome to take a look at my
MergeAdapter(if you really mean that you wish to concatenate multiple lists together) or Android’sExpandableListView(if your lists-in-lists is really some sort of shallow tree structure).