listview - Android ListViewAnimations NoClassDefFoundError -
i attempting add listviewanimations list view , instructions seem pretty straight forward. pretty plugin , play right?
so take of original code of:
usersadapter adapter = new usersadapter(dingggactivity.this, dingggactivity.friendtemplist); listview.setadapter(adapter);
this works great. updates , displays needed. when modify code work listviewanimations error:
09-10 17:19:52.083 2125-2125/com.dingggapp.dinggg e/androidruntime﹕ fatal exception: main process: com.dingggapp.dinggg, pid: 2125 java.lang.noclassdeffounderror: com.nineoldandroids.animation.animator[] @ com.nhaarman.listviewanimations.appearance.animationadapter.animateviewifnecessary(animationadapter.java:174) @ com.nhaarman.listviewanimations.appearance.animationadapter.getview(animationadapter.java:145)
isn't error of classes not imported correctly. thought did correctly.
here new adapter code after adding listviewanimations.
usersadapter adapter = new usersadapter(dingggactivity.this, dingggactivity.friendtemplist); alphainanimationadapter animationadapter = new alphainanimationadapter(adapter); animationadapter.setabslistview(listview); listview.setadapter(animationadapter);
i tried out of responses here none of them worked me either. i'm not sure if makes difference might worth noting creating , updating adapters , listviews within firebase event (more onchildadded
, onchildchanged
).
Comments
Post a Comment