我使用CoordinatorLayout
作为容器并使用NestedScrollView
来显示我的内容进行了布局。
当向下滚动时,我使用NestedScrollView
隐藏了我的工具栏,但是当我尝试滚动并达到布局限制时,通常会在工具栏下方显示的普通波浪效果不起作用。
这是
。
如何产生这种效果?如果我使用普通的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>
答案 0 :(得分:0)
尝试一下:
android:clipToPadding="false"
在您的NestedScollView
中。