Recycle View in NestedScrollView

Alex Crowel

My recycle can be scrolled the NestedScrollView. However, it is not smooth as usual. Can anybody please help me to fix this.

Here is my code

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:fillViewport="true">

    <android.support.v7.widget.RecyclerView
         android:id="@+id/fg_movie_list"
         android:layout_width="match_parent"
         android:layout_height="match_parent">

    </android.support.v7.widget.RecyclerView>

</android.support.v4.widget.NestedScrollView>
KeLiuyue

Use

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

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Recycle view OnitemclickListener

From Dev

Recycle view not populating with json

From Dev

Recycle View setOnClick

From Dev

Recycle view in Android java

From Dev

Android recycle view like a gallery view?

From Dev

Material Navigation Drawer with recycle view and Card view

From Dev

Linear Layout onclick listener not working with recycle view

From Dev

Recycle view onScrollChange listener keep triggering rappedly

From Dev

Prevent ListView from Trying to Recycle Footer View

From Dev

Recycle View dont collapse toolbar in fragment! why?

From Dev

Pull refresh with recycle view doesn't work

From Dev

Recycle View just shows 1 element

From Dev

Firebase UI 3.0.0: Retrieve data to recycle view

From Dev

Recycle view did not show all the things

From Dev

View Recycling not happens with Multiple Recyclerview inside NestedScrollView

From Dev

View Recycling not happens with Multiple Recyclerview inside NestedScrollView

From Dev

List view not scrolling in fragment using view pager inside NestedScrollView

From Dev

How exactly does GridView recycle/reuse view in Android?

From Dev

how to know when to cancel asynctask when view becomes recycle in listview

From Dev

Allow user to select only 1 item in Recycle View Android

From Dev

Android Studio Recycle View got error in method onBindViewHolder

From Dev

Android Data Binding don't work correctly on Recycle View

From Dev

Floating Action Button Unwanted Behavior with Recycle view android

From Dev

Why my realm recycle view not showing any data ?

From Dev

Filtering Firebase Database on button click returns single Recycle View listItem

From Java

Recycler view inside NestedScrollView causes scroll to start in the middle

From Dev

NestedScrollView scroll lags until CollapsingToolbarLayout view does not collapse

From Dev

Recycler View loading very slow for large data when inside NestedScrollView

From Dev

When select two item at the same time in recycle view application crash,how can i solve this?

Related Related

  1. 1

    Recycle view OnitemclickListener

  2. 2

    Recycle view not populating with json

  3. 3

    Recycle View setOnClick

  4. 4

    Recycle view in Android java

  5. 5

    Android recycle view like a gallery view?

  6. 6

    Material Navigation Drawer with recycle view and Card view

  7. 7

    Linear Layout onclick listener not working with recycle view

  8. 8

    Recycle view onScrollChange listener keep triggering rappedly

  9. 9

    Prevent ListView from Trying to Recycle Footer View

  10. 10

    Recycle View dont collapse toolbar in fragment! why?

  11. 11

    Pull refresh with recycle view doesn't work

  12. 12

    Recycle View just shows 1 element

  13. 13

    Firebase UI 3.0.0: Retrieve data to recycle view

  14. 14

    Recycle view did not show all the things

  15. 15

    View Recycling not happens with Multiple Recyclerview inside NestedScrollView

  16. 16

    View Recycling not happens with Multiple Recyclerview inside NestedScrollView

  17. 17

    List view not scrolling in fragment using view pager inside NestedScrollView

  18. 18

    How exactly does GridView recycle/reuse view in Android?

  19. 19

    how to know when to cancel asynctask when view becomes recycle in listview

  20. 20

    Allow user to select only 1 item in Recycle View Android

  21. 21

    Android Studio Recycle View got error in method onBindViewHolder

  22. 22

    Android Data Binding don't work correctly on Recycle View

  23. 23

    Floating Action Button Unwanted Behavior with Recycle view android

  24. 24

    Why my realm recycle view not showing any data ?

  25. 25

    Filtering Firebase Database on button click returns single Recycle View listItem

  26. 26

    Recycler view inside NestedScrollView causes scroll to start in the middle

  27. 27

    NestedScrollView scroll lags until CollapsingToolbarLayout view does not collapse

  28. 28

    Recycler View loading very slow for large data when inside NestedScrollView

  29. 29

    When select two item at the same time in recycle view application crash,how can i solve this?

HotTag

Archive