Skip to content Skip to sidebar Skip to footer

How Work Scrollview Inside Scrollview?

My Layout structure is like this ... ...

Solution 1:

As ListView has inbuilt scroll so this practice will be of same pattern ListView inside ScrollView(not feasible with Android), Then also you can refer this

Solution 2:

If I do that for a scrollview inside scrollview it work very well (tested only for scrollview). I don't know if it's work for a listview.

@Override public boolean onInterceptTouchEvent(MotionEvent ev) {

if(getFocusedChild() != null) {
          getParent().requestDisallowInterceptTouchEvent(true);
}

....

Post a Comment for "How Work Scrollview Inside Scrollview?"