ScrollView Inside ScrollView

后端 未结 13 714
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 15:40

I Know people from Google have asked us not to put Scrollable view inside another Scrollable view but is there any official statement from them directing us not to do so?

相关标签:
13条回答
  • 2020-11-22 16:06

    Is this close enough?

    You should never use a HorizontalScrollView with a ListView, since ListView takes care of its own scrolling. Most importantly, doing this defeats all of the important optimizations in ListView for dealing with large lists, since it effectively forces the ListView to display its entire list of items to fill up the infinite container supplied by HorizontalScrollView.

    http://developer.android.com/reference/android/widget/HorizontalScrollView.html

    UPDATE:

    Since you may be forced to use a two dimensional scrollview, you may consider using this: Internet archive of blog.gorges.us/2010/06/android-two-dimensional-scrollview/

    I haven't used this but it may be a reasonable approach.

    0 讨论(0)
  • [...] is there any official statement from them directing us not to do so?

    I think there is though I can't seem to find it in my notes. I know I found such a statement when trying to have a scroll view in a list activity. I think there is actually a logical focus "bug" in the way the Android UI system deals with nested scrollables which probably should be better detected and communicated to the developer. But my advice is...

    In the end it is better to consider a single scrollable view for the sake of the user anyway. It's like having scroll bars inside scroll bars on an HTML page; it may be legal but its a terrible user experience.

    0 讨论(0)
  • 2020-11-22 16:07

    Actually, there is an official statement about it, on a quite old video called "the world of ListView". They say not to put any scrollable view inside another one (when both are in the same direction).

    However, now we have a new view that allows both views to scroll at the same time, probably to show a cool effect:

    https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html

    I didn't find any example for this, so what I wrote is just a guess of what it does and what it's used for.

    0 讨论(0)
  • 2020-11-22 16:09

    Its not only that Google says its bad practice, it just doesnt make much sense. Supose you have two vertical scrollable views nested one inside the other. When you move you finger over the scroll views, which one do you want to move, the inner or the outer one?

    You should rethink your UI desing to something that does not require this, there a many ways to make a great UI and still keep it really simple.

    0 讨论(0)
  • 2020-11-22 16:10
    childScrollView.setOnTouchListener(new View.OnTouchListener() {
    
          @Override
        public boolean onTouch(View v, MotionEvent event) {
    
            int action = event.getAction();
            switch (action) {
            case MotionEvent.ACTION_DOWN:
               // Disallow ScrollView to intercept touch events.
              v.getParent().requestDisallowInterceptTouchEvent(true);
               break;
    
            case MotionEvent.ACTION_UP:
                // Allow ScrollView to intercept touch events.
                v.getParent().requestDisallowInterceptTouchEvent(false);
                break;
            }
    
            return false;
        }
    });
    

    v.getParent() = parent scrollView.

    0 讨论(0)
  • 2020-11-22 16:10

    Here is a possible solution. When reached the end of a child ScrollView it passes the control to the parent ScrollView to scroll. It works with ScrollView and ListView inside a ScrollView.

    Step 1 - set the parent OnTouchListener

    parentScroll.setOnTouchListener(new View.OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            v.getParent().requestDisallowInterceptTouchEvent(false);
            return false;
        }
    });
    

    Step 2 - set the childrens OnTouchListener (ScrollView or ListView)

    aChildScrollView.setOnTouchListener(new View.OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event)
        {
            v.getParent().requestDisallowInterceptTouchEvent(shouldRequestDisallowIntercept((ViewGroup) v, event));
            return false;
        }
    });
    aListView.setOnTouchListener(new View.OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            v.getParent().requestDisallowInterceptTouchEvent(shouldRequestDisallowIntercept((ViewGroup) v, event));
            return false;
        }
    });
    

    Step 3 - here are the required magic methods for the correct functionality

    protected boolean shouldRequestDisallowIntercept(ViewGroup scrollView, MotionEvent event) {
        boolean disallowIntercept = true;
        float yOffset = getYOffset(event);
    
        if (scrollView instanceof ListView) {
            ListView listView = (ListView) scrollView;
            if (yOffset < 0 && listView.getFirstVisiblePosition() == 0 && listView.getChildAt(0).getTop() >= 0) {
                disallowIntercept = false;
            }
            else if (yOffset > 0 && listView.getLastVisiblePosition() == listView.getAdapter().getCount() - 1 && listView.getChildAt(listView.getChildCount() - 1).getBottom() <= listView.getHeight()) {
                disallowIntercept = false;
            }
        }
        else {
            float scrollY = scrollView.getScrollY();
            disallowIntercept = !((scrollY == 0 && yOffset < 0) || (scrollView.getHeight() + scrollY == scrollView.getChildAt(0).getHeight() && yOffset >= 0));
    
        }
    
        return disallowIntercept;
    }
    
    protected float getYOffset(MotionEvent ev) {
        final int historySize = ev.getHistorySize();
        final int pointerCount = ev.getPointerCount();
    
        if (historySize > 0 && pointerCount > 0) {
            float lastYOffset = ev.getHistoricalY(pointerCount - 1, historySize - 1);
            float currentYOffset = ev.getY(pointerCount - 1);
    
            float dY = lastYOffset - currentYOffset;
    
            return dY;
        }
    
        return 0;
    }
    
    0 讨论(0)
提交回复
热议问题