工具栏不能位于CollapsingToolbarLayout的顶部

时间:2016-04-24 08:42:06

标签: android android-layout

我使用'com.android.support:appcompat-v7:23.3.0'编译到布局,但工具栏不能位于CollapsingToolbarLayout的顶部,我不知道为什么。但是用 Compile'c​​om.android.support:appcompat-v7:23.1.1“,工具栏也可以在顶部。

enter image description here

1 个答案:

答案 0 :(得分:1)

也发布你的xml代码。也许有一个错误的实施。

嗯,您可以将此代码作为基础:

  <?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:theme="@style/MyMaterialTheme.AppBarOverlay">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:popupTheme="@style/MyMaterialTheme.PopupOverlay" />

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