android – 在Nougat上运行时,为什么在使用CollapsingToolbarLayout时标题会被切断?

前端之家收集整理的这篇文章主要介绍了android – 在Nougat上运行时,为什么在使用CollapsingToolbarLayout时标题会被切断?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用以下布局,它适用于除 Android Nougat之外的所有版本,完全折叠时标题会被切断.

<android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:fitsSystemWindows="true"
            app:contentScrim="@color/them_color"
            app:expandedTitleTextAppearance="@android:color/transparent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:id="@+id/header_image"
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:contentDescription="@string/app_name"
                android:fitsSystemWindows="true"
                android:scaleType="fitXY"
                app:layout_collapseMode="parallax"/>

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

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

我试过app:collapsedTitleGravity =“center”但它没有解决问题.我怎样才能让它在牛轧糖上起作用?

解决方法

问题是 reported.

除了fitsSystemWindows之外,还有更好的选择,只需添加到onCreate collapsingToolbarLayout.post {collapsingToolbarLayout.requestLayout()}

原文链接:https://www.f2er.com/android/313917.html

猜你在找的Android相关文章