Android RecyclerView: abstract method not implemented

The application crashed when deleting an object from Recyclerview. The error log is as follows. It worked before it was upgraded to com.android.support:recyclerview-v7:23.1.0 and recyclerview-animators-1.2.2.jar. Now it is crumbling. Please help me. Thank you in advance.

FATAL EXCEPTION: main Process: com.timecard, PID: 2876 java.lang.AbstractMethodError: abstract method is not implemented in android.support.v7.widget.RecyclerView $ ItemAnimator.animateChange (RecyclerView.java) in android.support.v7.widget .RecyclerView.animateChange (RecyclerView.java:3062) in the android.support.v7.widget.RecyclerView.dispatchLayout file (RecyclerView.java:2924) in the android.support.v7.widget.RecyclerView.onLayout file (RecyclerView.java.3071 ) at android.view.View.layout (View.java:14817) in android.view.ViewGroup.layout (ViewGroup.java:4631) at android.widget.LinearLayout.setChildFrame (LinearLayout.java:1671) with

+4
source share
2

. recyclerview-animators, , , 2.0.1:

compile 'jp.wasabeef: recycliewiew-animators: 2.0.1'

-, , 23.0.1.

+13

https://github.com/wasabeef/recyclerview-animators RecyclerView, Setup

Gradle

RecyclerView 23.1.0 ( 2015 .) .

dependencies {
  // jCenter
  compile 'jp.wasabeef:recyclerview-animators:2.1.0'
}

RecyclerView 23.0.1 .

dependencies {
  // jCenter
  compile 'jp.wasabeef:recyclerview-animators:1.3.0'
}
+3

Source: https://habr.com/ru/post/1616015/


All Articles