如何使用 Appbar 从屏幕中间滚动设计布局并将其固定在顶部?
我的问题与 Google I/O 2015 应用程序中的设计完全相同(事件的详细屏幕)。我使工具栏出现在与顶部的偏移处,并在顶部有一个 ImageView。还有一个包含所需内容的 ScrollView。现在,只有 ScrollView 中的内容被滚动,而不是 ImageView 或 Toolbar。我还需要滚动视差顶部的 ImageView。
有人可以帮我设计布局吗?
活动详细信息.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="196dp"
android:layout_alignParentTop="true"
android:src="@mipmap/ic_launcher" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_below="@id/imageView"
android:background="@color/blue"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetLeft="72dp"
app:contentInsetStart="72dp"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="72dp"
android:text="Project Tango = Mobile 3D tracking and perception"
android:textColor="#FFFFFF"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="72dp"
android:layout_marginRight="16dp"
android:text="29 May 10:00-11:00 am in Room 2 (L2)"
android:textColor="#FFFFFF"
android:textSize="14sp" />
</android.support.design.widget.AppBarLayout>
<ScrollView
android:layout_below="@id/appbar"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="@string/longText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
</RelativeLayout>