RecyclerViewItemAnimators icon indicating copy to clipboard operation
RecyclerViewItemAnimators copied to clipboard

An Android library which provides simple Item animations to RecyclerView items

Results 11 RecyclerViewItemAnimators issues
Sort by recently updated
recently updated
newest added

> Could not resolve com.github.gabrielemariotti.recyclerview:recyclerview-animators:0.3.0-SNAPSHOT. Required by: project :app > Could not resolve com.github.gabrielemariotti.recyclerview:recyclerview-animators:0.3.0-SNAPSHOT. > Unable to load Maven meta-data from http://jitpack.io/com/github/gabrielemariotti/recyclerview/recyclerview-animators/0.3.0-SNAPSHOT/maven-metadata.xml. > Could not get resource 'http://jitpack.io/com/github/gabrielemariotti/recyclerview/recyclerview-animators/0.3.0-SNAPSHOT/maven-metadata.xml'. > Could...

private void resetAnimation(RecyclerView.ViewHolder holder) { // TODO: 2019-08-23 missing file // AnimatorCompatHelper.clearInterpolator(holder.itemView); endAnimation(holder); } Lost the file ‘AnimatorCompatHelper’, I removed this line and the test works fine.

Hi, I´m trying to use your lib on Android Studio 3.0.1 with Recyclerview-v7:27.0.1 and I away get "Fail to resolve" on _implementation 'com.github.gabrielemariotti.recyclerview:recyclerview-animators:0.3.0-SNAPSHOT@aar'_ A´m I doing something wrong or your...

hello, i want to start Alpha aniamtion from right to left. how can i do to this?

I try your code to make animation for my recycler view, but I got random bug issues, so sometime the item (string) became disappear or became smaller. It will happen...

bug

Line #270 and #271 of ViewAnimation.java: ` int lastVisiblePosition = ((LinearLayoutManager)mRecyclerView.getLayoutManager()).findLastCompletelyVisibleItemPosition(); ` It tries to cast my layout manager to a linear layout, which is not the case, since I'm...

I know it supports 23.1.1, but I want to know what to do to support 23.2.1, maybe you can help me

First of all, great work! SwingBottomInAnimationAdapter has missing configuration, it should be generic as other adapters. So now we have: ``` public class SwingBottomInAnimationAdapter extends AnimatorAdapter { public SwingBottomInAnimationAdapter(RecyclerView.Adapter adapter,...

The SwingBottomInAnimationAdapter should be typed just as the other subclasses of AnimatorAdapter: ``` java public class SwingBottomInAnimationAdapter extends AnimatorAdapter { ... } ```

Hi, Do you plan to implement swipe to remove animations similar to ListViewAnimator?