1

I tried almost everything but did not get a perfect smooth scrolling. please help Me. Thanks in Advance

this is my layout

<com.agribazaar.android.views.StickyScrollView style="@style/MatchParent">
       <LinearLayout
                android:id="@+id/ll_auctions"
                style="@style/MatchWidth"
                android:orientation="vertical">

                <android.support.v7.widget.RecyclerView
                    android:id="@+id/rv_upcoming"
                    style="@style/MatchWidth"
                    android:nestedScrollingEnabled="false"
                    android:padding="@dimen/m4dp" />


        </LinearLayout>

    </com.agribazaar.android.views.StickyScrollView>
Danish Farooq
  • 135
  • 1
  • 10

1 Answers1

2

try this..

recyclerView.setNestedScrollingEnabled(false);
  • try to hardcode linearlayout's height like { android:layout_height="200dp" }.. if it works now then you have to set height dynamically – Abhinay Sharma Feb 21 '18 at 10:21