I’ve a horizontal List View consisting of folder type nodes. At a time only 8 items are visible. If there are more items then an user has to scroll through the ListView to see the hidden content. I want to place a visual indicator to show if there are more items in the List or not.
In View pager, you can tilt the page if current page is last page. Is there a similar mechanism available for ListView. If not similar then which visual indicator should I use?
You can try using
addFooterViewto show anImageViewat the bottom that there is more data andremoveFooterViewwhen you reach the end of the data. Another solution is to create a customListViewand overrideonDrawto draw a down arrow for e.g. above theListViewif the list has not reached the end of the data.