簡體   English   中英

滑動以刷新無法在同一屏幕上使用列表和網格

[英]swipe to refresh not working with list and grid on the same screen

我在同一屏幕上將回收站視圖用於列表和網格,但刷卡刷新不起作用

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.RecyclerView
    android:id="@+id/listView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

</android.support.v7.widget.RecyclerView>

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="gone" />

有什么建議我做錯了或者我執行錯誤的方式嗎?

這就是對我有用的

 <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/list_refresh" android:layout_width="match_parent" android:layout_height="wrap_content"> 
        <android.support.v7.widget.RecyclerView
            android:id="@+id/trending_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:visibility="visible" />

    </android.support.v4.widget.SwipeRefreshLayout>


        <android.support.v4.widget.SwipeRefreshLayout
            android:id="@+id/grid_refresh"
            android:visibility="gone"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <android.support.v7.widget.RecyclerView
                android:id="@+id/trending_grid"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:visibility="gone" />

        </android.support.v4.widget.SwipeRefreshLayout>

多個回收器視圖不適用於同一滑動刷新

因為刷卡刷新只能包含一個孩子

`

暫無
暫無

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

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