问题
Possible Duplicate:
How can I make a horizontal ListView in Android?
I have used Vertical ListView Many Times but for certain requirements I want to implement the Horizontal ListView, Also list Items will come dynamically.Please help me to get the horizontal Listview.
回答1:
The Android API seems to be lacking a Horizontal ListView
widget.
So In other tutorials, developer are implemented it using Gallery
or HorizontalScrolllView
.
Actually Gallery is make it easy because you can use Adapter with it so at runtime you can add custom view in it. And it look likes a Horizontal ListView.
Just go through the below link,
In all possible way this would be recommended Android Horizontal ListView
Also this SO question How can I make a horizontal ListView in Android?
来源:https://stackoverflow.com/questions/10617126/horizontal-listview