Skip to main content
prettified
Source Link
Bruno Bieri
  • 10.3k
  • 11
  • 67
  • 98

I solved this problem by using NestedScrollView instead of ScrollView. 

And for RecyclerView:

 <android.support.v7.widget.RecyclerView  android:layout_width="match_parent" android:layout_height="match_parent" /> 

And in Code

recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 

I solved this problem by using NestedScrollView instead of ScrollView. And for RecyclerView

 <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" /> 

And in Code

recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 

I solved this problem by using NestedScrollView instead of ScrollView. 

And for RecyclerView:

<android.support.v7.widget.RecyclerView  android:layout_width="match_parent" android:layout_height="match_parent"/> 

And in Code

recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 

I solved this problem by using NestedScrollView instedNestedScrollView instead of ScrollViewScrollView. And for RecyclerViewRecyclerView

 <android.support.v7.widget.RecyclerView android:layout_width="match_parent"  android:layout_height="match_parent" /> 

android:layout_width="match_parent" android:layout_height="match_parent" />

And in Code --> recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false);

Please try and suggest me if there have any other better and efficient options. Thanks

recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 

I solved this problem by using NestedScrollView insted of ScrollView. And for RecyclerView

<android.support.v7.widget.RecyclerView 

android:layout_width="match_parent" android:layout_height="match_parent" />

And in Code --> recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false);

Please try and suggest me if there have any other better and efficient options. Thanks

I solved this problem by using NestedScrollView instead of ScrollView. And for RecyclerView

 <android.support.v7.widget.RecyclerView android:layout_width="match_parent"  android:layout_height="match_parent" /> 

And in Code

recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 
Source Link
Arun PK
  • 119
  • 1
  • 8

I solved this problem by using NestedScrollView insted of ScrollView. And for RecyclerView

<android.support.v7.widget.RecyclerView 

android:layout_width="match_parent" android:layout_height="match_parent" />

And in Code --> recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false);

Please try and suggest me if there have any other better and efficient options. Thanks