在coordinatorlayout

时间:2015-12-17 09:44:07

标签: android android-recyclerview android-coordinatorlayout android-appbarlayout

我的布局文件中有3个视图,其中CoordinatorLayout作为根视图:AppbarLayout,RecyclerView和页脚(始终不可见)。 Recyclerview实现默认行为appbar_scrolling_view_behavior,理想情况下,将recyclerview带到appbarlayout下方。但是回收者视图和页脚重叠。为了防止这种情况,我不得不编写一个自定义行为,以便当页脚可见时,Recyclerview应该为页脚腾出空间。但现在,appbar_scrolling_view_behavior的默认行为已经消失,现在appbarlayout和recyclerview重叠。Here is the Image of the layout

链接到我实施的自定义行为: https://github.com/Mandeep221/CustomBehaviorForRecyclerview/blob/master/CustomBehavior.java

我的问题:我如何实现2件事(同时在一个行为中):

  1. 在协调员布局
  2. 内的appbarlayout下方获取recyclerview
  3. 如果页脚可见,则获取recycelerview为页脚腾出空间。
  4. 如果您可以建议一些解决方法,那也会很棒!非常感谢!

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    
        <android.support.v7.widget.Toolbar
            android:id="@+id/app_bar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways|snap" />
    
    </android.support.design.widget.AppBarLayout>
    
    <android.support.v7.widget.RecyclerView 
    xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/list_recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="4dp"
            android:scrollbars="vertical"
          app:layout_behavior="prokure.it.prokure.Search.NewSearch.CustomBehavior" />
    
    
        <prokure.it.prokure.FooterBarLayout
            android:id="@+id/footerBar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom">
    
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
    
            //footer child views    
    
                </LinearLayout>
        </prokure.it.prokure.FooterBarLayout>
    
    </android.support.design.widget.CoordinatorLayout>
    

2 个答案:

答案 0 :(得分:0)

不要将android.support.design.widget.CoordinatorLayout保留为root布局。

添加RelativeLayout作为根布局。然后使用属性layout_alignParentTop和layout_above =“@ + id / footerBar”添加android.support.design.widget.CoordinatorLayout,并将prokure.it.prokure.FooterBarLayout设置为对齐父底部作为RelativeLayout的第二个子节点。

<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">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_above="@+id/footerBar">

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

            <android.support.v7.widget.Toolbar
                android:id="@+id/app_bar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:layout_scrollFlags="scroll|enterAlways|snap" />

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

        <android.support.v7.widget.RecyclerView 
            android:id="@+id/list_recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="4dp"
            android:scrollbars="vertical"
             />
    </android.support.design.widget.CoordinatorLayout>

    <prokure.it.prokure.FooterBarLayout
        android:id="@+id/footerBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom">

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

            //footer child views    

        </LinearLayout>
    </prokure.it.prokure.FooterBarLayout>
</RelativeLayout>

答案 1 :(得分:0)

另一种更简单的方法是将以下行添加到prokure.it.prokure.FooterBarLayout

    app:layout_anchor="@id/list_recycler_view"
    app:layout_anchorGravity="bottom"

并在协调器布局中保留prokure.it.prokure.FooterBarLayout。

确保在回收者视图的末尾添加一个空单元格,以便prokure.it.prokure.FooterBarLayout不与RecyclerView的最后一个单元格重叠。