I have a recyclerview. Each item is a cardview with an imageview and textviews. On scrolling, at the beginning of each item recyclerview jerks/jumps and then proceeds with smooth scroll. I researched alot and found no solution. Someone please help. I am using data binding with MVVM architecture.
Recyclerview jerking when scrolling
910 Views Asked by Fathima km At
1
There are 1 best solutions below
Related Questions in MVVM
- How can I fit "ol.Map" to "Ext.panel.Panel"?
- How to not open the same Popup WPF MVVM?
- How to set data context of ViewModela View's xaml?
- Asynchronous MVVM commands
- Proper MVVM ViewModel and Model pattern
- Modeling an XML hierarchy for traversal with MVVM
- Ext JS 5 Data Binding Combobox
- Combobox and IDataErrorInfo
- Change default error message when enter non digit in a textbox requires integer
- MVVM: Updating ViewModel properties based on Model properties
- Problems related to View Models created from XAML
- Cant bind enum to combobox wpf mvvm
- RadioButtons binding on Windows Phone 8.1
- Cascading Comboboxes WPF mvvm and EF
- Update DataGrid cell if other cell changes
Related Questions in DATA-BINDING
- Understanding Polymer data-binding and HTML tags
- WPF MessageBox Cancel checkbox check
- Binding to "this.property" object in VisualStateMenager
- Update ObservableCollection where the items are received from another List
- ObservableInt causes crash on DataBinding Library
- Polymer 1.0 Data Binding in <styles>
- Bind constraints in Input control of SAPUI5
- Access into a Binary Search Tree via a bound function in a function template
- Serve arbitrary html in angular data bind
- submit dropdown angularjs spring MVC
- Periodically update Polymer Binding
- MVC WPF DataContext for two UserControls
- Binding ComboBox to ViewModel in WinForms
- JavaFX binding: does BeanPathAdapter work?
- Resetting form controls after action in Angular
Related Questions in SCROLL
- Scrollable Edittext in Listview in android
- Slow drawing of items in ListView with many columns
- GWT Datagrid slow scroll due to css rendering
- Scrolling pictures increase (android)
- backgrounds Slideshow, but text scrolling
- Android - RecyclerView - How do I temporarily prevent scrolling?
- Onscroll not applying class
- Fix on scroll but with varying screen size no set pixel distance
- Change logo when scrolled to a certain div
- Targetting the background of a div for a jquery parrallax scroller
- Jquery panel + scroll from top detection?
- Button fixed to page when scrolling in mobile view with Javascript
- Homepage scrolling issues
- Super Mario side-scrolling C#
- How to detect which element is on the center of the screen with scroll position?
Related Questions in ANDROID-RECYCLERVIEW
- Disable Swipe for position in RecyclerView using ItemTouchHelper.SimpleCallback
- Get height for RecyclerView child views at runtime
- RecycleView Adapter notifyItemRangeInserted reload all rows after start position
- Clicking CardView to load a fragment
- Tool_Bar with android CardView and Transparent status bar
- Sync scrolling of multiple RecyclerViews
- RecyclerView gets pushed down when returned to activity
- Background color or Images shuffling on scrolling in recyclerview?
- RecyclerView duplicate issue in Android
- RecyclerView wrap_content with GridLayoutManager
- RecyclerView onclick listener fires before click animation completes
- Toolbar not showing with swipe to refresh
- Infinite scrolling using custom animations in Recycler View not working Android
- How to make RecyclerView header not sticky?
- Android - RecyclerView - How do I temporarily prevent scrolling?
Related Questions in CARDVIEW
- Change Action Bar color to background color of recycler view item
- Android List of CardWithList
- How do you create a custom CardView object from an XML layout file?
- How to properly use Picasso library in RecycleView
- setCardBackgroundColor on a RecyclerView with CardView
- setLayouParams didn't work in cardView
- java.lang.NullPointerException at CardView OnClick
- Recyclerview - CardView with Headers for cards and different cards
- TextView inside CardView isn't displaying
- swiping card in xamarin (visual studio) for android like google cards in maps/news
- CardView in Grid not displaying shadow on all sides
- Display a Captured Image on CardView
- Recyclerview jerking when scrolling
- how to expend and collapse card view in RecyclerView in android when click other item
- parsing json and display with recycler view and card view
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I found the solution. I added the code
holder.setIsRecyclable(false);which was the reaso for the jerking. Removing this line made recyclerview scrolling perfect.