滚动时CoordinatorLayout内部的NestedScrollView的波浪效果不起作用

时间:2018-09-09 11:16:05

标签: android android-layout android-coordinatorlayout android-nestedscrollview

我使用CoordinatorLayout作为容器并使用NestedScrollView来显示我的内容进行了布局。

当向下滚动时,我使用NestedScrollView隐藏了我的工具栏,但是当我尝试滚动并达到布局限制时,通常会在工具栏下方显示的普通波浪效果不起作用。

这是

example

如何产生这种效果?如果我使用普通的ScrollView,将显示此效果,但无法隐藏我的工具栏。

这是我的布局:

<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:id="@+id/layout_detail"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.dicoding.paul.moviecatalog.DetailActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar_detail"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ToolbarTheme">

        <android.support.v7.widget.Toolbar
            android:id="@+id/tb_my_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ToolbarTheme"
            app:popupTheme="@style/ToolbarTheme"
            app:layout_scrollFlags="scroll|enterAlways"
            app:title="Detail"
            app:titleTextAppearance="@style/ToolbarTheme.TitleText"/>
    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/activity_detail_content"/>

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

这是我的详细内容:

<android.support.v4.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">
        //contents
        //contents
</android.support.v4.widget.NestedScrollView>

1 个答案:

答案 0 :(得分:0)

尝试一下:

android:clipToPadding="false"

在您的NestedScollView中。