簡體   English   中英

RecyclerView的協調器布局

[英]Coordinator Layout with RecyclerView

我在RecyclerView使用CoordinatorLayout 。該應用程序運行良好,但我的問題是該視圖應僅作為RecyclerView的項目滾動。在我的情況下,我只有3個項目,但CordinatorLayout會滾動RecyclerView直到其捕捉到頂部因此,我將下面的部分變成白色,因為listsize只有3。

M

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

    <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/app_bar_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"

                app:contentScrim="@android:color/transparent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">



                    <ImageView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignBottom="@+id/textView38"
                        android:layout_alignParentTop="true"
                        android:padding="20dp"
                        android:src="@drawable/ic_filter_back" />




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

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



        <android.support.v7.widget.RecyclerView
            android:id="@+id/rv_event_details"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipToPadding="false"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    </android.support.design.widget.CoordinatorLayout>

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="#fff"
        android:orientation="horizontal"
        android:paddingBottom="03dp">

        <RelativeLayout
            android:id="@+id/rl_tab1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/tab1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:padding="05dp"
                android:src="@drawable/ic_create_wedding_admin" />

            <TextView
                android:id="@+id/tv_tab_1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/tab1"
                android:layout_marginLeft="05dp"
                android:layout_marginRight="05dp"
                android:gravity="center"
                android:text="Admin" />


        </RelativeLayout>


        <RelativeLayout
            android:id="@+id/rl_tab2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/tab2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:padding="05dp"
                android:src="@drawable/ic_create_wedding_guests" />

            <TextView
                android:id="@+id/tv_tab_2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/tab2"
                android:layout_marginLeft="05dp"
                android:layout_marginRight="05dp"
                android:gravity="center"
                android:text="Guests" />


        </RelativeLayout>


        <RelativeLayout
            android:id="@+id/rl_ed_tab_guests"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/iv_ed_iv_budget"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:padding="05dp"
                android:src="@drawable/ic_create_wedding_budget" />

            <TextView
                android:id="@+id/tvbud"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/iv_ed_iv_budget"
                android:layout_marginLeft="05dp"
                android:layout_marginRight="05dp"
                android:gravity="center"
                android:text="Budget" />


        </RelativeLayout>


        <RelativeLayout
            android:id="@+id/rl_ed_tab_tasks"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

            <ImageView
                android:id="@+id/iv_ed_iv_tasks"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:padding="05dp"
                android:src="@drawable/ic_create_wedding_tasks" />

            <TextView
                android:id="@+id/tv_ed_tasks"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/iv_ed_iv_tasks"
                android:layout_marginLeft="05dp"
                android:layout_marginRight="05dp"
                android:gravity="center"
                android:text="Tasks" />


        </RelativeLayout>


</LinearLayout>

我想要的是僅將視圖滾動到項目大小為止。

這個問題已經提出。 在發布其他問題之前,請檢查其他問題。

您需要在協調器布局中為子布局提供自定義行為。

檢查是否有幫助:

https://stackoverflow.com/a/33461064/2346980

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM