我是通过参考这个发现的
answer
.我刚刚在中添加了两个视图
CollapsingToolbarLayout
.一个人有
layout_gravity
在顶部,另一个在底部。如下图所示,
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">
<ImageView
android:id="@+id/iv_cover_photo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />
<View
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_gravity="center_horizontal|bottom"
android:background="@drawable/image_gradient_bottom" />
<View
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_gravity="top"
android:background="@drawable/image_gradient_top" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
现在,这看起来几乎类似于Whats的应用程序android配置文件页面图像。