What Is The Best Way To Implement Multiple Spinners?
I want to know that what will be the best way to implement spinner in a listview. My scenario is I am getting products names, prices and their number from server side. For this I a
Solution 1:
Having many spinners in a ListView
is possible but I would imagine in most cases it'd be inconvenient for the user -- too much clutter and moving elements on top of each other. I suggest you create a separate Fragment
for item details, and only display static items in your ListView
that will take the user to item details fragment (with spinners and anything else you might need). Take a look at this design pattern: Multi-pane layouts
Post a Comment for "What Is The Best Way To Implement Multiple Spinners?"