No hay impulso de lanzamiento dentro de ScrollView

En mi actividad, tengo dos RecyclerView s dentro de un ScrollView . El problema es que cuando deslizo / deslizo el ScrollView , el desplazamiento se detiene inmediatamente. ¿Hay una manera de obtener el ScrollView para implementar el momento o la inercia por lo que hay una cierta deceleración antes de que el desplazamiento se detiene?

Mi XML está abajo:

 <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ProgressBar android:id="@+id/threadload_progress" style="?android:attr/progressBarStyleLarge" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="8dp" android:visibility="gone" /> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <android.support.v7.widget.RecyclerView 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:id="@+id/subforums" android:name="net.polunom.forum.fragments.ThreadFragment" android:layout_width="match_parent" android:layout_height="wrap_content" app:layoutManager="LinearLayoutManager" tools:context=".fragments.ThreadFragment" tools:listitem="@layout/fragment_subforum"/> <android.support.v7.widget.RecyclerView 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:id="@+id/threadlist" android:name="net.polunom.forum.fragments.ThreadFragment" android:layout_width="match_parent" android:layout_height="wrap_content" app:layoutManager="LinearLayoutManager" tools:context=".fragments.ThreadFragment" tools:listitem="@layout/fragment_thread"/> </LinearLayout> </ScrollView> 

FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.