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"/> 
2
  • 1
    Post your Java files Commented Sep 30, 2017 at 17:08
  • Can u try this link, simple example given on recyclerview stackoverflow.com/questions/46095866/… Commented Sep 30, 2017 at 17:12

1 Answer 1

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); 
Sign up to request clarification or add additional context in comments.

2 Comments

no i didn't use recyclerView inside ScrollView. i used both seperatly inside two different activities
but the problem that scroll doesn't work . it may work if i slide at very edge of screen and it's not work all time

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.