如何停止在CollapsingToolbarLayout上滚动,以便它不会完全崩溃

时间:2016-01-06 15:38:59

标签: java android performance android-layout android-intent

  

您好Everone能否请您建议如何阻止它。请查看以下屏幕截图。

enter image description here

  

向上滚动后,它应该停止在距离TOP

最小200dp的app工具栏下方

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以执行以下操作

<?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">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height" //280dp
        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="@dimen/my_toolbar_bar_height" //200dp
                app:layout_collapseMode="pin"
                app:popupTheme="@style/AppTheme.PopupOverlay"/>

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

<include layout="@layout/content_scrolling"/> // This is place holder for content/list

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

AppBarLayout身高将超过Toolbar身高(在您的方案中Toolbar身高为200dp,因此我将AppBarLayout保持为280dp)希望这就是你要找的!

答案 1 :(得分:1)

设置最小折叠高度

android:minHeight="200dp"