Android - 如何实现此类工具栏?

时间:2016-02-28 14:47:42

标签: android material-design android-toolbar

我注意到PlayStore上最近的应用程序中使用了这种类型的工具栏,我需要实现这一点。

enter image description here

我知道如何用XML创建一个简单的工具栏。

简单工具栏

<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:background="@color/ColorPrimary"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            android:theme="@style/about_toolbar"
            >
... 

</android.support.v7.widget.Toolbar>

我好像是一个带填充的工具栏。

所以我不完全确定。 请这样做的人可以帮助我!

1 个答案:

答案 0 :(得分:2)

使用cardView的示例:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#bcbcbc"
        >
        <android.support.v7.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_alignParentTop="true"
            android:layout_margin="20dp"
            android:background="@android:drawable/dialog_holo_light_frame"
            />
    </RelativeLayout>

enter image description here