Android: Horizontal list view in vertical scroll view?

Basbous picture Basbous · Aug 2, 2012 · Viewed 13k times · Source

I want to make the same implementation a pulse application.

Horizontal list view inside a vertical list view.

enter image description here

i tried this project for horizontal list view, but when i am trying to scroll horizontal the vertical scroll active and the list is goes up and down. how can i prevent this issues.

Answer

ade sueb picture ade sueb · Jun 29, 2013

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

ViewParent viewParent = getParent();

if (viewParent != null) {

    viewParent.requestDisallowInterceptTouchEvent(true);

}