ToolBar和CollapsingToolBar之间的主要区别

时间:2015-12-02 15:18:32

标签: android material-design toolbar

Android中的ToolBar和CollapsingToolBar有什么区别? 我尝试在线查找但无法获得任何有用的资源

1 个答案:

答案 0 :(得分:2)

toolBar看起来像这样:

enter image description here

您可以将它移动到您想要的屏幕上的任何位置。它被视为一种观点。

让我们看看你如何把它放在自己的布局文件中与其他视图:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">

<Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="56dp">
</Toolbar>

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@color/gray"/>

和collapsingtoolbar是一个包装器,用于在工具栏上执行某种动画,并将类似图像的视图添加到工具栏。这是一个例子:

enter image description here

在折叠工具栏上向下滑动时,它会显示其他视图。

这是一个代码示例,并注意我如何将工具栏放在可折叠工具栏中,它包装它:

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    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"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="48dp"
        app:expandedTitleMarginEnd="64dp"
        android:fitsSystemWindows="true">

        <com.antonioleiva.materializeyourapp.SquareImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            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>

注意:您可能希望将其置于协调器布局中,但我并不想添加更多混淆。