Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

10 Answers

up vote 73 down vote accepted

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...

share|improve this answer
   
well it solved my problems with this issue. thanks for that! can you ping OP to mark as solved your solution? – Patrick Jul 20 '11 at 10:21
Any reason this isn't marked as the right answer? – Matt Huggins Aug 17 '11 at 1:47
6  
One question: why do you do thread synchronization in your implementation? Everything runs 100% on UI thread. – Paul Turchenko Sep 8 '11 at 17:45
You should also post the location to the github version in the answer, I think. – Shurane Mar 21 '12 at 18:02
1  
@Paul: I like your library, but I have issues with it/your demo app. I add one more instance of HorizontalListView to listviewdemo.xml. The other instance does not show up. Actually, no matter what UI element I add, it is not shown if it comes after HorizontalListView. Is this a known issue and is there a workaround? – wojci Aug 1 '12 at 12:50
show 2 more comments

@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 dispatchTouchEvent override onTouchEvent. Use the same code of dispatchTouchEvent and delete the method (you can read the difference between the two here http://developer.android.com/guide/topics/ui/ui-events.html#EventHandlers )

@Override
public boolean onTouchEvent(MotionEvent event) {
    boolean handled = mGesture.onTouchEvent(event);
    return handled;
}

Then, add the following code which will decide to steal the event from the item children and give it to our onTouchEvent, or let it be handled by them.

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    switch( ev.getActionMasked() ){
        case MotionEvent.ACTION_DOWN:
             mInitialX = ev.getX();
             mInitialY = ev.getY();             
             return false;
        case MotionEvent.ACTION_MOVE:
             float deltaX = Math.abs(ev.getX() - mInitialX);
             float deltaY = Math.abs(ev.getY() - mInitialY);
             return ( deltaX > 5 || deltaY > 5 );
        default:
             return super.onInterceptTouchEvent(ev);
    }
}

Finally, don't forget to declare the variables in your class:

private float mInitialX;
private float mInitialY;
share|improve this answer
1  
This answer was really useful! – Steve Prentice Jan 26 '12 at 7:31
6  
Why don't you send this as a pull request to Paul? – Cristian Jul 14 '12 at 15:35
The only proper way to handle clicks! – Anton Derevyanko Aug 9 '12 at 9:10
ev.getActionMasked() in't available on android 2.1 platform. Do you know how to overcome this? – user527759 Nov 22 '12 at 6:34
seems that i can use int maskedAction = ev.getAction() & MotionEvent.ACTION_MASK which shold be equal to ev.getMaskedAction() – user527759 Nov 22 '12 at 6:47
show 2 more comments

Download the jar file from here

now put it into your libs folder

now in main.xml put this code

 <com.devsmart.android.ui.HorizontalListView
    android:id="@+id/hlistview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    />

now in Activity class if you want Horizontal Listview with images then put this code

  HorizontalListView hListView = (HorizontalListView) findViewById(R.id.hlistview);
    hListView.setAdapter(new HAdapter(this));


 private class HAdapter extends BaseAdapter {

    LayoutInflater inflater;

    public HAdapter(Context context) {
        inflater = LayoutInflater.from(context);

    }

    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return Const.template.length;
    }

    @Override
    public Object getItem(int position) {
        // TODO Auto-generated method stub
        return position;
    }

    @Override
    public long getItemId(int position) {
        // TODO Auto-generated method stub
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        HViewHolder holder;
        if (convertView == null) {
            convertView = inflater.inflate(R.layout.listinflate, null);
            holder = new HViewHolder();
            convertView.setTag(holder);

        } else {
            holder = (HViewHolder) convertView.getTag();
        }
        holder.img = (ImageView) convertView.findViewById(R.id.image);
        holder.img.setImageResource(Const.template[position]);
        return convertView;
    }

}

class HViewHolder {
    ImageView img;
}
share|improve this answer
Thanks you so much... :D – duongvanthai Feb 6 at 10:04

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 AdapterView. It's pretty miserable. See my SO question about horizontal ListViews.

share|improve this answer
Sadly your answer is the correct one. Even Google confirms that the only way for horizontal listview is Gallery. But Gallery is not the same as a horizontal listview. Would you be willing to share your code? Do you recycle views? – Patrick Boos Feb 22 '11 at 6:30
1  
Unfortunately the code was written for my company so therefore is proprietary. However, I do hope to find some free time in the coming months to rewrite it (the original implementation is pretty unstable) and release it to the public domain. I can also tell you that I started by taking this demo from Sony Ericsson, changing all 'x' to 'y' and all 'width' to 'height'. Then I removed the 3D transforms and added stopping-at-the-end behavior. – Neil Traft Feb 22 '11 at 18:15
@Neil Traft how did you fixed the items position? And what about stopping at the end? – Adrian Magdas Mar 2 '11 at 17:30
Honestly, it really was just a lot of guesswork. It took a long time to get it right, and I'm convinced that there's a better way. But the basic premise is, in the fillListDown() method, you need to keep track of the bottom edge of the last list item. But you don't know where that edge is until you actually create the last item (adapter.getCount()-1). So you wait until that item is created and then you can store the location of the edge. Once you know that, you can make sure that mListTop is never less than 0 and never more than the height of the list. – Neil Traft Mar 3 '11 at 3:35
1  
If you don't really, really, ABSOLUTELY need a horizontal list, I would STRONGLY encourage you to give up, or use the Gallery. – Neil Traft Mar 3 '11 at 3:36
show 1 more comment

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

share|improve this answer
How can I set scroll position programmatically? – Dmitri Portenko Feb 21 at 10:52
setSelection() method is there but may not be 100% implemented. Try it. – Mobistry Mar 29 at 12:03

This isn't much of an answer, but how about using a Horizontal Scroll View?

share|improve this answer
2  
It Works. But If i have large number of items then can not use the adapter kind of stuff and click events. – Praveen Jul 14 '10 at 9:01

well you can always create your textviews etc dynamically and set your onclicklisteners like you would do with an adapter

share|improve this answer
what do you mean? i cant get you? please post code snippet about your idea? – Praveen Jul 24 '10 at 10:05
please tell me the purpose of the "horizontal listview" will it have complex /multi views? eg 2 textboxes 1 progressbar? or just let's say plain text?Also do you have a fixed number of elements inside that view or you want to change it dynamically? Answer me these and i'll be able to help you with code – weakwire Jul 24 '10 at 12:16
i want to do the horizontal text gallery. but the selected item comes to the center as default. I want to be the selected item must be where i clicked that. please also check my posts: stackoverflow.com/questions/3237566/text-gallery-on-android and stackoverflow.com/questions/3318617/… – Praveen Jul 24 '10 at 13:11

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.

share|improve this answer

I have ListView inside HorizontalListView inside ScrollView and inside ViewPager. Everything work fine except when I start to add onTouchListener on ListView then changing page sometime it crashes.

After I do some google,

I find an HorizontalVariableListView library here

It work perfectly for me without any error.

share|improve this answer

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:

https://github.com/sephiroth74/HorizontalVariableListView

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.