没有图像时,CollapsingToolbarLayout不显示标题

时间:2017-07-17 12:00:19

标签: android xml android-layout

我正在使用CollapsingToolbarLayout在我的活动工具栏中显示图像,它工作正常。但有时,根据显示的片段,我不想显示任何图像。在那种情况下,我想看看正常的工具栏。如果我没有将任何drawable传递给imageView,将其高度设置为0,或将其可见性设置为GONE,则工具栏看起来很正常,但没有标题。那是为什么?

我的布局文件:

<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:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">
    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="40dp"
        android:background="@color/transparent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            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"
            android:background="@color/transparent"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            />

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


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

<include layout="@layout/content_main" />

1 个答案:

答案 0 :(得分:1)

我想在这种情况下您需要使用CollapsingToolbar setTitleEnabled(false);请参阅link