I am creating a mobile application using React Native and the list components included in it do not have high enough performance, so I started using Android RecyclerView as a list component. There is a problem though with this. RecyclerView does not update its content views until it scrolls or resizes the RecyclerView. What can cause this problem and how can I fix it? I tried notifyDatasetChanged, notifyItemChanged, forceLayout, invalidate, postInvalidate and a lot of different options with each.
android react-native android-recyclerview react-native-android
Vaintti
source share