I am trying to determine the best way to have a single listview contains different rows styles. I know how to create a custom row + custom array adapter to support a custom row for the entire list view. But how can one listview support many different row styles?
|
|
|
Since you know how many types of layout you would have - it's possible to use those methods.
Then you inflate layout only if it's null and determine type using Look at this tutorial for further information. To achieve some optimizations in structure that you've described in comment I would suggest:
I hope that will help you. If you could provide some XML stub with your data structure and information how exactly you want to map it into row, I would be able to give you more precise advise. By pixel. |
|||||||||||
|
You already know the basics. You just need to get your custom adapter to return a different layout/view based on the row/cursor information being provided. A
If you look at the Adapter, you'll see methods that account for using row-specific views:
The latter two methods provide the position so you can use that to determine the type of view you should use for that row. Of course, you generally don't use AdapterView and Adapter directly, but rather use or derive from one of their subclasses. The subclasses of Adapter may add additional functionality that change how to get custom layouts for different rows. Since the view used for a given row is driven by the adapter, the trick is to get the adapter to return the desired view for a given row. How to do this differs depending on the specific adapter. For example, to use ArrayAdapter,
But to use derivatives of CursorAdapter,
However, to use SimpleCursorAdapter,
Look up the specific examples/tutorials for the kind of adapter you end up using. |
|||||||||
|
|
In your custom array adapter, you override the getView() method, as you presumably familiar with. Then all you have to do is use a switch statement or an if statement to return a certain custom View depending on the position argument passed to the getView method. Android is clever in that it will only give you a convertView of the appropriate type for your position/row; you do not need to check it is of the correct type. You can help Android with this by overriding the getItemViewType() and getViewTypeCount() methods appropriately. |
|||
|
|