如何在 android 中将视图元素粘贴到 collapsingtoolbarlayout 工具栏下方?
How to stick a view element below a collapsingtoolbarlayout toolbar in android?
尝试构建一个 Android 具有折叠工具栏布局和始终紧贴工具栏底部下方的视图元素的应用程序。
我想我只是在整个应用程序栏布局中弄乱了我的组织,但我似乎无法找出正确的顺序。
任何帮助都会很棒!
谢谢-
这是我的 Activity xml
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="244dp"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:collapsedTitleTextAppearance="@style/CollapsedTheme"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleGravity="center|bottom"
app:expandedTitleMarginBottom="20dp"
app:expandedTitleMarginEnd="20dp"
app:expandedTitleMarginStart="20dp"
app:expandedTitleTextAppearance="@style/ExpandedTheme"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:theme="@style/ToolbarColoredBackArrow">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:orientation="vertical">
</LinearLayout>
<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" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_product" />
我正在尝试添加
<RelativeLayout
android:layout_below="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue"/>
因此它始终位于工具栏下方,但当折叠工具栏布局滚动到屏幕顶部时,它仍停留在工具栏下方。
AppBarLayout
扩展 LinearLayout
- 只需在 CollapsingToolbarLayout
下方添加 RelativeLayout
,不要包含任何 layout_scrollFlags
.
<AppBarLayout>
<CollapsingToolbarLayout />
<RelativeLayout />
</AppBarLayout>
尝试构建一个 Android 具有折叠工具栏布局和始终紧贴工具栏底部下方的视图元素的应用程序。
我想我只是在整个应用程序栏布局中弄乱了我的组织,但我似乎无法找出正确的顺序。
任何帮助都会很棒! 谢谢-
这是我的 Activity xml
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="244dp"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:collapsedTitleTextAppearance="@style/CollapsedTheme"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleGravity="center|bottom"
app:expandedTitleMarginBottom="20dp"
app:expandedTitleMarginEnd="20dp"
app:expandedTitleMarginStart="20dp"
app:expandedTitleTextAppearance="@style/ExpandedTheme"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:theme="@style/ToolbarColoredBackArrow">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:orientation="vertical">
</LinearLayout>
<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" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_product" />
我正在尝试添加
<RelativeLayout
android:layout_below="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="@color/blue"/>
因此它始终位于工具栏下方,但当折叠工具栏布局滚动到屏幕顶部时,它仍停留在工具栏下方。
AppBarLayout
扩展 LinearLayout
- 只需在 CollapsingToolbarLayout
下方添加 RelativeLayout
,不要包含任何 layout_scrollFlags
.
<AppBarLayout>
<CollapsingToolbarLayout />
<RelativeLayout />
</AppBarLayout>