屏幕方向更改后,CollapsingToolbarLayout不会展开

时间:2015-09-29 11:17:26

标签: android android-collapsingtoolbarlayout

我的应用程序中有活动,标题包含背景图片和标题/事件的开始时间。下面是事件描述。

<?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:id="@+id/main_content"
        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="256dp"
            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="72dp"
                app:expandedTitleMarginBottom="90dp"
                app:expandedTitleMarginEnd="16dp"
                app:expandedTitleTextAppearance="@style/ExpandedAppBar">

            <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:fitsSystemWindows="true"
                    app:layout_collapseMode="parallax">

                <ImageView
                        android:id="@+id/event_cover"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:scaleType="centerCrop"/>

                <LinearLayout
                        android:id="@+id/event_header"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="vertical"
                        android:layout_gravity="bottom"
                        android:background="@color/actionbar_color"
                        android:paddingTop="16dp"
                        android:paddingRight="16dp"
                        android:paddingBottom="16dp"
                        android:paddingLeft="72dp">

                    <TextView
                            android:id="@+id/event_title"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:textSize="18sp"
                            android:textColor="@android:color/white"
                            android:maxLines="2"
                            android:ellipsize="end"/>

                    <TextView
                            android:id="@+id/event_begin"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:textSize="12sp"
                            android:textColor="#aaa"/>
                </LinearLayout>
            </FrameLayout>

            <android.support.v7.widget.Toolbar
                    android:id="@+id/actionbar_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.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            app:layout_scrollFlags="scroll|enterAlways">

        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

            <TextView
                    android:id="@+id/event_desc"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingTop="16dp"
                    android:paddingRight="8dp"
                    android:paddingBottom="8dp"
                    android:paddingLeft="72dp"/>

        </LinearLayout>

    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.FloatingActionButton
            android:id="@+id/event_action_btn"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            app:layout_anchor="@id/appbar"
            app:layout_anchorGravity="bottom|left"
            android:layout_margin="@dimen/event_fab_margin"
            app:borderWidth="0dp"
            app:fabSize="mini"
            android:clickable="true"/>

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

现在我有了CollapsingToolbarLayout的奇怪错误行为。以下条件再现: 1.在portrate方向中,描述的文本适合屏幕,因此NestedScrollView无法滚动其内容,而CollapsingToolbarLayout不会折叠标题

screen 1

  1. 在横向方向上,描述的文字不适合屏幕,因此NestedScrollView可以滚动内容,看起来有能力折叠标题
  2. screen 2

    在横向方向上,我会折叠标题(屏幕3)并将屏幕方向更改为移植。标题保持折叠状态,无法扩展标题,标题再次出现(屏幕4)。在某些情况下,在这种操作下,工具栏的主页按钮会消失。

    屏幕3 screen 3

    屏幕4

    screen 4

    我使用以下版本的库:设计支持库 - v22.2.1,appcompat-v7 - v23.0.1

0 个答案:

没有答案