如何在滚动时固定工具栏下方的linearlayout

时间:2018-05-23 17:36:13

标签: java android

我希望实现类似下图所示的图像

image

我想在工具栏下面粘贴一个linearlayout,让它在滚动过程中的给定时刻出现

3 个答案:

答案 0 :(得分:0)

您可以尝试此布局

原始布局

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

       <include layout="@layout/toolbar_layout"/>



    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
         .
         .

        </LinearLayout>
    </ScrollView>
    <LinearLayout>

答案 1 :(得分:0)

答案 2 :(得分:0)

选中此项,我在您的商品代码中添加了评论

dplyr