1

Scroll does not work in every layout I use like ScrollView or RecyclerView or any other scrollable Viewgroup

Any help?

<android.support.v7.widget.RecyclerView
android:id="@+id/NewsScreen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"/>
  • 1
    Post your Java files – Rahul Sep 30 '17 at 17:08
  • Can u try this link, simple example given on recyclerview https://stackoverflow.com/questions/46095866/getting-android-recyclerview-to-update-view-inside-react-native-component/46313257#46313257 – Amjad Khan Sep 30 '17 at 17:12

1 Answers1

1

If you are using recyclerView inside scrollView then your recyclerView would not work properly. So, use NestedScrollView instead of ScrollView

Or try this

RecyclerView v = (RecyclerView) findViewById(...);
v.setNestedScrollingEnabled(false);
UltimateDevil
  • 2,807
  • 2
  • 18
  • 31