Is there any Possible to make the ListView horizontally? I done this Using Gallery view. But the Selected item comes to the center of the Screen Automatically. I want to avoid it. the selected item at the same spot i have clicked. How to Rectify this Problem? My Idea is to set the ListView with Horizontal Scroll. Share Your Idea?
|
|
||||
|
|
|
After reading this post, I have implemented my own Horizontal listview. You can find it: http://www.dev-smart.com/?p=34 Let me know if this helps... |
|||||||||||||||||
|
|
@Paul answer links to a great solution, but the code doesn't allow to use onClickListeners on items children (the callback functions are never called). I've been struggling for a while to find a solution and I've decided to post here what you need to modify in that code (in case somebody need it). Instead of overriding
Then, add the following code which will decide to steal the event from the item children and give it to our
Finally, don't forget to declare the variables in your class:
|
|||||||||||||||
|
|
Download the jar file from here now put it into your libs folder now in main.xml put this code
now in Activity class if you want Horizontal Listview with images then put this code
|
|||
|
|
|
I've done a lot of searching for a solution to this problem. The short answer is, there is no good solution, without overriding private methods and that sort of thing. The best thing I found was to implement it myself from scratch by extending |
|||||||||||||||
|
|
I had to do the same for one of my projects and I ended up writing my own as well. I called it HorzListView is now part of my open source Aniqroid library. http://aniqroid.sileria.com/doc/api/ (Look for downloads at the bottom or use google code project to see more download options: http://code.google.com/p/aniqroid/downloads/list) The class documentation is here: http://aniqroid.sileria.com/doc/api/com/sileria/android/view/HorzListView.html |
|||||
|
|
|
This isn't much of an answer, but how about using a Horizontal Scroll View? |
|||||
|
|
well you can always create your textviews etc dynamically and set your onclicklisteners like you would do with an adapter |
|||||||
|
|
HorizontialListView can't work when the data in the adapter is involved in another thread. Everything runs 100% on UI thread.This is a big problem in multithread. I think using HorizontialListView is not the best solution for your problem.HorzListView is a better way.You just replace your previous Gallery with HorzListView.You neednot modify the code about the adapter.Then everything goes the way you hope.See http://stackoverflow.com/a/12339708/1525777 about HorzListView. |
||||
|
|
|
I have After I do some google, I find an It work perfectly for me without any error. |
|||
|
|
|
Paul doesn't bother to fix bugs of his library or accept users fixes. That's why I am suggesting another library which has similar functionality: |
|||
|
|
protected by Praveen Apr 26 at 9:05
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.