Search code examples
androidlistviewhorizontalscrollview

Scrolling ListView Horizontally and Vertically Both In Android


Possible Duplicate:
Horizontal ListView in Android?

I am creating a listView by inflating a xml file,,I want my list to be scrolled Horizontal as well as Vertically my content are hiding in left part of screen.

Can someone tell me how to scroll a list horizontally.??

Updated

I can use HorizontalScrollView But it will scroll horizontally.I want both scrollbar to be enable


Solution

  • Instead of using ListView use Gallery - it will be scrolled horizontal, and can be filled with datas in the same way as the ListView.

    EDIT: Look at this post: Horizontal ListView in Android?, there are code samples of what you need.