Is it possible to have a single listview with 2 or more columns, operable with paging property (i.e. at a time listview will show only 4 items in single column and on press of right arrow it will show next 4 items )..
Can you please tell me the procedure to implement it or any idea?
Thanks
puneet
Is it possible to have a single listview with 2 or more columns, operable
Share
Not sure if this is what you’re looking for, but basically this code creates a subset of objects based on the main dataset you’re using to populate your list. It goes something like this:
It’s pretty basic, but it should be able to get your started. Plus, using something like this, you could also tie in the listview with a SQLite database by having a database class that returns a list of objects as a subset for the listview.
You can download the source here: Download Source