Skip to content Skip to sidebar Skip to footer

Android: Horizontal List View In Vertical Scroll View?

I want to make the same implementation a pulse application. Horizontal list view inside a vertical list view. i tried this project for horizontal list view, but when i am trying

Solution 1:

it's work on my app...

just like pulse app... horizontallistview inside vertical listview

this is the solution...

just put this code in u'r onscroll of HorizontalListview class...

ViewParentviewParent= getParent();

if (viewParent != null) {

    viewParent.requestDisallowInterceptTouchEvent(true);

}

Solution 2:

It would be much easier if you paste your piece of code with your question, allowing to see why it goes wrong. My best guess without this information is to check you usage of fill_parent vs wrap_content.

Solution 3:

i think you should use some horizontal scrollviews in a vertical scrollview. and in each horizontal scrollview, you can give listview, gridview, etc... if you want. I think it's better solution for this problem. :)

Post a Comment for "Android: Horizontal List View In Vertical Scroll View?"