ListView nested scrolling on API<21
H

2

8

Title is clear. I'm having this layout:

_________________
|_______________| <- Toolbar    
|___|___|___|___| <- Tablayout
|               |
|               |
|   ViewPager   |
|               |
|_______________|

Both toolbar and tablayout are inside an AppBarLayout, so I can use scroll flags to hide the toolbar on scrolling toward the top. The problem is that this only works with nested-scrolling-supported views. Most of the tabs - I mean, most of the pages - are support.v4.NestedScrollViews, so that is OK; others are (and need to be) ListViews.

From Lollipop on, I can simply add android:nestedScrollingEnabled="true" to the list view, and the toolbar hides correctly on scroll.

On API<21, though, there's no such attribute and the toolbar doesn't hide. Even more important, the very last items in the list are hidden, because of some measuring bug in CoordinatorLayout: listview acts as if it had the space currently occupied by the toolbar.

Solutions:

  • Switch to RecyclerView, which does support nested scrolling: I can't, because I need to use an external-library adapter that works only with adapter views and that I can't replace (namely, ParseQueryAdapter);

  • Extend ListView and implement nested scrolling: seems way to complicated;

  • Extend ListView and implement some workaround, like measuring stuff to avoid the last-item issue or (and) a custom behavior to make the toolbar hide: seems complicated too;

  • Use some layout trick: found none.

Any help?

For example, I (desperately) tried:

<android.support.v4.widget.NestedScrollView
    android:nestedScrollingEnabled="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </ListView>

</android.support.v4.widget.NestedScrollView>

But this way the ListView is not laid out as match_parent. I get a little view with small height, and the rest of the page is empty.

Histogenesis answered 27/9, 2015 at 18:2 Comment(0)
P
2

Unfortunately, there is no way to get nested scrolling working on ListView - otherwise it wouldn't require the modifications that were done in API 21.

You'll note that the current Parse SDK has actually removed ParseQueryAdapter entirely. Given that, it may make sense to start building your own RecyclerView based adapter using the Parse query APIs directly.

Psychosomatics answered 28/9, 2015 at 0:11 Comment(4)
I'm not on the very last release, but I remember that class not being listed in the public APIs for long. Thank you, however, for the "you can't" - I spent some hours dealing with NestedScrolling interfaces.Histogenesis
"there is no way to get nested scrolling working on ListView". There is ViewCompat.setNestedScrollingEnabled(ListView, boolean);Burnet
@Burnet - which does nothing prior to API 21. It just saves you from having to check the API level.Psychosomatics
@Burnet - the pre-API 21 source code requires the view to implement the Support Library's NestedScrollingChild interface, which a framework class like ListView will never do. It is only on API 21+ that it calls through to the framework setNestedScrollingEnabled, which ListView does implement.Psychosomatics
H
1

For those intersted in the specific ParseQueryAdapter issue,

Histogenesis answered 28/9, 2015 at 8:52 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.