I am loading dataset of 25 items at a time in the expandable list view groups. I want to load next 25 items whenever user reaches to the last item of any group until all the items have been loaded. I am able to do that with list view but I unable to replicate it with ExpandableListView, as whenever I am scrolling all the groups attached to the ExpandableListView are getting scrolled, So I am unable to find the exact position where I have reached.
Asked
Active
Viewed 584 times
0
-
tried `getExpandableListPosition` or similar methods of `ExpandableListView`? – pskink Feb 15 '17 at 08:58
-
I tried another way. I used one child Item for every group element and in that child element itself gave listview as layout. Apart from this [link](http://stackoverflow.com/questions/15234349/can-listview-be-inside-expandablelistview) helped to scroll the list view . – Gr8Warrior Feb 15 '17 at 11:32
-
1BTW for that particular case if you want to check if you are at the bottom just use `if (firstVisibleItem + visibleItemCount == totalItemCount) {...` – pskink Feb 15 '17 at 12:01