Android NestedScrollView在CoordinatorLayout中平滑滚动

时间:2016-08-11 17:41:22

标签: android android-scrollview android-coordinatorlayout

我正在使用示例ScrollingActivity(包含在SDK中)来测试视差行为。该示例在CoordinatorLayout中使用NestedScrollView。当我从屏幕底部向上滚动时;滚动停在工具栏上(即使我的滚动速度很快)。正如您在附加图像中看到的那样,需要多个滚动来显示扩展的AppBarLayout。

enter image description here

我需要一个平滑的滚动条,供用户查看扩展的AppBarLayout。有趣的是,如果我使用RecyclerView而不是NestedScrollView ,就不会发生这个问题。

我正在使用构建工具23.0.3。这是布局XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="me.deepakmishra.swipetests.ScrollingActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_gravity="fill_vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:context="me.deepakmishra.swipetests.ScrollingActivity"
        tools:showIn="@layout/activity_scrolling">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/text_margin"
        android:text="@string/large_text" />
    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/fab_margin"
        app:layout_anchor="@id/app_bar"
        app:layout_anchorGravity="bottom|end"
        app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

2 个答案:

答案 0 :(得分:0)

我无法使用CoordinatorLayout实现这一点,主要是因为我无法获得同时封装速度和位置的事件。 CoordinatorLayout在单独的回调中提供速度和位置,使用它们会导致运动结束。

我使用自定义处理程序以传统方式实现视差效果,以跟踪所有滚动/拖动操作。

答案 1 :(得分:0)

添加android:fillViewport =&#34; true&#34;和android:layout_gravity =&#34; fill_vertical&#34;到您的NestedScrollView。希望这会对你有所帮助。