This repository was archived by the owner on Aug 22, 2020. It is now read-only.

Description
I have a layout like this and it does not scroll smoothly even though I had written nestedScrollingEnabled="false" to VerticalStepperView. Then I deleted that line. How do I make it scrool smoothly?
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/ingredients_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
android:nestedScrollingEnabled="false" />
<moe.feng.common.stepperview.VerticalStepperView
android:id="@+id/vertical_stepper_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>