在协调器布局中排列视图

时间:2018-06-03 21:23:43

标签: android android-recyclerview android-coordinatorlayout

在布局中我有工具栏和工具栏子标题(在白色背景上)。 Recyclerview在中间,底部布局,底部总和。 我想要那个

1)底部布局(红色方块)不应位于recyclerview的顶部(现在它已重叠)。

2)当回收者视图(绿色方块)向上滚动时 - 操作栏和工具栏将隐藏,只有副标题可见

3)当回收者向下滚动时 - 底部布局(红色方块)会隐藏以节省空间。

我尝试了很多方法来安排它,但我做不到。我想1可以通过向recyclerview添加底部填充来实现..但我不知道包含底部布局的高度。

我的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:theme="@style/ToolBarStyle" />

        <TextView
            android:id="@+id/txtHeader"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:gravity="center_horizontal"
            android:padding="8dp"
            android:text="@string/title_debt_list"
            android:textAllCaps="true"
            android:textAppearance="@style/TextAppearance.AppCompat.Medium"
            android:textColor="@color/white"
            android:textStyle="bold" />

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

    </android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerDebts"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <include
        layout="@layout/layout_debt_bottom"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

</android.support.design.widget.CoordinatorLayout>

这是一个截屏: enter image description here

0 个答案:

没有答案