How can I add loading indicator to display getting more items from server on etsy StaggeredGridView's footer when scroll down the last item of StaggeredGridView
Also , I want to add pull to refresh in StaggeredGridView header
How can I add loading indicator to display getting more items from server on etsy StaggeredGridView's footer when scroll down the last item of StaggeredGridView
Also , I want to add pull to refresh in StaggeredGridView header
For the load more in footer: I think you can use getView() method from your Adapter to know when the last item is shown on the screen, then, you have to load more elements to the list and call adapter.notifyDataSetChanged().
for the pull to refresh you have a lot of questions related and code in the net, for example: Set up pull to refresh for Staggered Grid View
Anyway, It could help if you post some code here with your question.
Hope this helps!