SuperRecyclerView icon indicating copy to clipboard operation
SuperRecyclerView copied to clipboard

Using inside NestedScrollView

Open NtcWai opened this issue 8 years ago • 3 comments

My layout like that:

<android.support.v4.widget.NestedScrollView
    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">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/banner_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:nestedScrollingEnabled="false"
            />

        <View
            android:id="@+id/divider"
            android:layout_width="match_parent"
            android:layout_height="@dimen/divider_height"
            android:layout_below="@id/banner_list"
            android:background="@color/divider"/>

        <com.malinskiy.superrecyclerview.SuperRecyclerView
            android:id="@+id/latest_post_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/divider"
            app:layout_empty="@layout/view_empty_home_tab"
            app:layout_moreProgress="@layout/view_loading_more"
            app:layout_progress="@layout/view_loading_first"
            />
    </RelativeLayout>
</android.support.v4.widget.NestedScrollView>

But the SuperRecyclerView doesn't display content. It's OK when I replace by normal RecyclerView. How to fix it ? Thanks!

NtcWai avatar Dec 22 '16 10:12 NtcWai

I have this same issue, currently using support 25.1.0, with regular recyclerview it works, it would be great if we would have any response about this issue

diegoRodriguezAguila avatar Dec 22 '16 22:12 diegoRodriguezAguila

I have the same issue, did you find any solution ? thank you

NtcWai avatar Jan 25 '17 02:01 NtcWai

any one find solution for this issue?

devbrevity avatar Jan 10 '18 06:01 devbrevity