简体   繁体   English

滚动时,CollapsingToolbarLayout无法正常工作(折叠)

[英]CollapsingToolbarLayout not working(collapsing)when scrolled

I am trying to create a CollapsingToolbarLayout and below it a listview, when the listview is scrolled the Toolbar should collapse, but its not working when scrolled the Toolbar is not collapsing. 我正在尝试创建一个CollapsingToolbarLayout ,在它下面是一个listview,当滚动列表视图时,工具栏应该会崩溃,但滚动工具栏时它不起作用不会崩溃。

Used this tutorial: http://android-developers.blogspot.in/2015_05_01_archive.html 使用本教程: http//android-developers.blogspot.in/2015_05_01_archive.html

Note: The FrameLayout contains the listview 注意:FrameLayout包含listview

    <LinearLayout 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"
        android:scrollbars="vertical">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="192dp"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbara"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary"
                    app:layout_collapseMode="pin"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
            </android.support.design.widget.CollapsingToolbarLayout>
        </android.support.design.widget.AppBarLayout>

        <FrameLayout
            android:id="@+id/frame"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

The framelayout code: framelayout代码:

<RelativeLayout 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"
    tools:context="ranjithnair02.com.supporttest.BlankFragment">

    <ListView
        android:id="@+id/rcyv"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="10dp"
        android:layout_marginRight="10dp"
        android:src="@android:drawable/ic_search_category_default"
        app:borderWidth="0dp"
        app:elevation="5dp"
        app:rippleColor="@color/wallet_highlighted_text_holo_light" />
</RelativeLayout>

在此输入图像描述

You should use RecyclerView instead of ListView 您应该使用RecyclerView而不是ListView

Note: don't forget to update RecyclerView in Gradle file. 注意:不要忘记在Gradle文件中更新RecyclerView。

  compile 'com.android.support:recyclerview-v7:22.2.0'

I did an example by using RecyclerView instead. 我通过使用RecyclerView做了一个例子。 The source code could be found here: https://github.com/jiahaoliuliu/MaterialDesignSample/tree/collapsingToolbars 源代码可以在这里找到: https//github.com/jiahaoliuliu/MaterialDesignSample/tree/collapsingToolbars

There are a couple of things that you should take into account and the post does not says. 有几件事你应该考虑,而帖子没有说。

  1. Use CoordinatorLayout as the main layout 使用CoordinatorLayout作为主要布局

  2. Use a theme without ActionBar and set the toolbar as actionBar instead. 使用没有ActionBar的主题,并将工具栏设置为actionBar。 You can do it by creating a special theme for the activity like this: 您可以通过为此活动创建特殊主题来完成此操作:

     <!-- Indigo without actionbar when toolbar is used --> <style name="IndigoWithoutActionBar" parent="Indigo"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style> 

    And in the AndroidManifest.xml file, do the follow: 在AndroidManifest.xml文件中,执行以下操作:

     <activity android:name=".CollapsingToolbarActivity" android:label="@string/app_name" android:theme="@style/IndigoWithoutActionBar" > </activity> 

    Once this is done, set it on the Java code: 完成后,在Java代码上设置它:

     // Actionbar final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); 

Here is a functional xml code that I use. 这是我使用的功能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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/detail_backdrop_height"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true">

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

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax" />

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

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/simpleRecyclerView"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        />

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

If this is not enough for you, you can follow the code of Chris Banes here: https://github.com/chrisbanes/cheesesquare 如果这还不够,你可以在这里遵循Chris Banes的代码: https//github.com/chrisbanes/cheesesquare

The problem is the RelativeLayout . 问题是RelativeLayout Try replacing the FrameLayout with the ListView and then the FloatingButton . 尝试使用ListView替换FrameLayout ,然后使用FloatingButton替换。 All wrapped in a CoordinatorLayout of course. 当然,所有这些都包含在CoordinatorLayout中。

<FrameLayout
        android:id="@+id/frame"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

You need to add two things to the list view and it will work 您需要在列表视图中添加两个内容,它才能生效

android:nestedScrollingEnabled="true"

app:layout_behavior="@string/appbar_scrolling_view_behavior"

My working XML code is 我的工作XML代码是

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@color/black"
    tools:context="com.example.pr20020897.samplapp.DisplayAllDataActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="200dp">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:collapsedTitleTextAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
            app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse"
            app:expandedTitleMarginStart="72dp"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:id="@+id/toolbar_image"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_collapseMode="parallax"
                android:scaleType="centerCrop"
                android:src="@drawable/db"
                android:contentDescription="image" />


            <android.support.v7.widget.Toolbar
                android:id="@+id/app_bar"
                android:layout_width="match_parent"
                android:layout_height="?actionBarSize"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:navigationIcon="@drawable/ic_arrow_back"
                app:contentInsetStart="72dp"
                app:layout_collapseMode="pin" />


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

    <ListView
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:id="@+id/listView"
        android:nestedScrollingEnabled="true"
        android:scrollbars="none"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="#FF0000"
        android:background="@color/black"
        android:dividerHeight="1dp">
    </ListView>
</android.support.design.widget.CoordinatorLayout>

Hopefully help someone. 希望能帮助别人。

For my case : I dint give height to my Toolbar . 对于我的情况: 我给我的Toolbar高度

It was wrap_content . 这是wrap_content If thats the case then try to fix the height of the Toolbar using :- 如果是这种情况,那么尝试使用以下方法修复Toolbar的高度: -

android:layout_height="?attr/actionBarSize"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM