1 Star 0 Fork 0

ugJava / RecyclerViewItemAnimators

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

RecyclerViewItemAnimators Library

Travis master: Build Status

This repo provides:

  • Appearance animations
  • Simple animators for the item views

Screen

Quick start

You can now download it from Sonatype's snapshots repo.

  1. Add the snapshots repo to your build.gradle

    repositories {
        maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
    }
  2. Add build dependency

    dependencies {
        compile 'com.github.gabrielemariotti.recyclerview:recyclerview-animators:0.3.0-SNAPSHOT@aar'
    }

Feature

These animators work with the RecyclerView provided by Google with the support library com.android.support:recyclerview-v7:23.1.1.

Appearance animations: which work when loading on the screen or when scrolling

  • Alpha
  • SlideInLeft
  • SlideInRight
  • SlideInBottom
  • ScaleIn

Simple Animators: cloned from DefaultItemAnimator provided by Google customizing the animations. This part is still in beta.

  • SlideInOutLeftItemAnimator : which applies a slide in/out from/to the left animation
  • SlideInOutRightItemAnimator : which applies a slide in/out from/to the right animation
  • SlideInOutTopItemAnimator : which applies a slide in/out from/to the top animation
  • SlideInOutBottomItemAnimator : which applies a slide in/out from/to the bottom animation
  • ScaleInOutItemAnimator : which applies a scale animation
  • SlideScaleInOutRightItemAnimator : which applies a scale animation with a slide in/out from/to the right animation

Quick example:

Appearance animations:

   mAdapter = new MyAdapter(this);

   AlphaAnimatorAdapter animatorAdapter = new AlphaAnimatorAdapter(mAdapter, mRecyclerView);
   mRecyclerView.setAdapter(animatorAdapter);

Simple Animators:

   mRecyclerView.setItemAnimator(new SlideInOutLeftItemAnimator(mRecyclerView));

NOTE: Feedbacks and patches are welcome!

The sample app uses all features available in the widget.

ChangeLog

Acknowledgements

Credits

Author: Gabriele Mariotti (gabri.mariotti@gmail.com)

Follow me on Google+ Follow me on Twitter Follow me on LinkedIn

License

Copyright 2014-2015 Gabriele Mariotti

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

# RecyclerViewItemAnimators Library Travis master: [![Build Status](https://travis-ci.org/gabrielemariotti/RecyclerViewItemAnimators.svg?branch=master)](https://travis-ci.org/gabrielemariotti/RecyclerViewItemAnimators) This repo provides: * **Appearance animations** * **Simple animators** for the item views ![Screen](/demo.gif) ## Quick start You can now download it from Sonatype's snapshots repo. 1. Add the snapshots repo to your `build.gradle` ```groovy repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } ``` 2. Add build dependency ```groovy dependencies { compile 'com.github.gabrielemariotti.recyclerview:recyclerview-animators:0.3.0-SNAPSHOT@aar' } ``` ## Feature These animators work with the `RecyclerView` provided by Google with the support library `com.android.support:recyclerview-v7:23.1.1`. **Appearance animations:** which work when loading on the screen or when scrolling * Alpha * SlideInLeft * SlideInRight * SlideInBottom * ScaleIn **Simple Animators:** cloned from `DefaultItemAnimator` provided by Google customizing the animations. *This part is still in beta.* * **SlideInOutLeftItemAnimator** : which applies a slide in/out from/to the left animation * **SlideInOutRightItemAnimator** : which applies a slide in/out from/to the right animation * **SlideInOutTopItemAnimator** : which applies a slide in/out from/to the top animation * **SlideInOutBottomItemAnimator** : which applies a slide in/out from/to the bottom animation * **ScaleInOutItemAnimator** : which applies a scale animation * **SlideScaleInOutRightItemAnimator** : which applies a scale animation with a slide in/out from/to the right animation ## Quick example: **Appearance animations:** ```java mAdapter = new MyAdapter(this); AlphaAnimatorAdapter animatorAdapter = new AlphaAnimatorAdapter(mAdapter, mRecyclerView); mRecyclerView.setAdapter(animatorAdapter); ``` **Simple Animators:** ```java mRecyclerView.setItemAnimator(new SlideInOutLeftItemAnimator(mRecyclerView)); ``` **NOTE**: Feedbacks and patches are welcome! The sample app uses all features available in the widget. ## ChangeLog * [Changelog:](CHANGELOG.md) A complete changelog Acknowledgements -------------------- * Thanks to [Niek Haarman][1] for some ideas and code taken from his [ListViewAnimations][2]. Credits ------- Author: Gabriele Mariotti (gabri.mariotti@gmail.com) <a href="https://plus.google.com/u/0/114432517923423045208"> <img alt="Follow me on Google+" src="/assets/images/g+64.png" /> </a> <a href="https://twitter.com/GabMarioPower"> <img alt="Follow me on Twitter" src="/assets/images/twitter64.png" /> </a> <a href="http://it.linkedin.com/in/gabrielemariotti"> <img alt="Follow me on LinkedIn" src="/assets/images/linkedin.png" /> </a> License ------- Copyright 2014-2015 Gabriele Mariotti Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --- [1]: https://plus.google.com/+NiekHaarman [2]: https://github.com/nhaarman/ListViewAnimations

简介

暂无描述 展开 收起
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/uyghurjava/RecyclerViewItemAnimators.git
git@gitee.com:uyghurjava/RecyclerViewItemAnimators.git
uyghurjava
RecyclerViewItemAnimators
RecyclerViewItemAnimators
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891