In my project I need disable the \"change\" animation of RecyclerView
while notifyItemChanged
.
I investigated in the source of Recycl
Nothing of the above solutions worked for me. What worked was using the TransitionManager and setting the scene transition to null
TransitionManager.go(new Scene(recyclerView), null);
To re-enable the default animation you can create a new AutoTransition and set it to the same method above:
AutoTransition autoTransition = new AutoTransition();
TransitionManager.go(new Scene(recyclerView), autoTransition);