BaseAnimation network Android animation set, custom controls, nearly 200 kinds of source code! BaseAnimation, if a new version is updated automatically to remind everyone, I hope everyone will contribute their animated XML files or other source, together to create this open source app!

Overview

#BaseAnimation (below chart) #动画合集 (下面有效果图)修改分支 主干

English Description

BaseAnimation network Android animation set, custom controls, nearly 200 kinds of source code! BaseAnimation, if a new version is updated automatically to remind everyone, I hope everyone will contribute their animated XML files or other source, together to create this open source app!

BaseAnimation QQ group:149581646

Author's blog: http://blog.csdn.net/duguang77

中文说明

BaseAnimation收集网络Android相关动画集合,自定义控件等,近200多种源码 BaseAnimation,如果有新版本会自动提醒大家更新,也希望大家多多贡献自己的动画xml文件或者其他源码,一起来打造这个开源的app

BaseAnimation QQ群:149581646

作者博客:http://blog.csdn.net/duguang77

Version

The 1.3 version update:

1.Splash increased 2 animation

2.high imitation animation effect increased 10

3.ListView collection 15

4.custom control set to increase 17

5.page sliding increases 4

A total of 48 increase in animation

====

The 1.2 version update:

1.increase in Splash animation (center opening effect)

2.increase in Flip folding effect (13)

3.NineOld set (18+)

4.high imitation series (6 classic animation)

Train ticket ticket animation

Taobao menu

Youku navigation menu

3D picture browsing

The drop-down selection box

Minesweeping effect

5.new versions of the message board reminding function

6.part of the code optimization

====

The 1.1 version update

The home page

1.simple animation (24)

2.complex animation (43)

========

1.3 版本更新内容:

1.Splash增加2个动画

2.高仿动画效果增加10个

3.ListView集合增加15个

4.自定义控件集合增加17个

5.页面滑动增加4个

共增加48个动画效果

====

1.2 版本更新内容:

1.增加Splash动画 (中心打开式效果 )

2.增加Flip折叠效果的集合(13种)

3.增加NineOld集合(18+)

4.高仿系列(6种经典动画)

火车票出票动画 淘宝菜单 优酷导航菜单 图片3D浏览 下拉选择框 扫雷效果

5.增加新版本消息栏提醒功能

6.优化部分代码

====

1.1 版本更新内容

首页

1.简单动画(24)

2.复杂动画(43)

3.Splash引导动画(5)

====

ScreenShot

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image . Image

Image . Image

Image . Image . Image . Image

You might also like...
Android Animation Easing Functions. Let's make animation more real!
Android Animation Easing Functions. Let's make animation more real!

Android Easing Functions This project is originally from my another project, AndroidViewAnimation, which is an animation collection, to help you make

Android library to control Transition animates. A simple way to create a interactive animation.
Android library to control Transition animates. A simple way to create a interactive animation.

TransitionPlayer Android library to control Transition animates. A simple way to create a interactive animation. Demo1 SimpleTransition Code: ....

Android library to control Transition animates. A simple way to create a interactive animation.
Android library to control Transition animates. A simple way to create a interactive animation.

TransitionPlayer Android library to control Transition animates. A simple way to create a interactive animation. Demo1 SimpleTransition Code: ....

Android ripple animation helper, easy to create Circular Reveal. | Android水波动画帮助类,轻松实现View show/hide/startActivity()特效。(0.4.6)
Android ripple animation helper, easy to create Circular Reveal. | Android水波动画帮助类,轻松实现View show/hide/startActivity()特效。(0.4.6)

CircularAnim English | 中文 首先来看一个UI动效图。 效果图是是Dribbble上看到的,原作品在此。 我所实现的效果如下: Watch on YouTube Compile 最新可用版本 So,你可以如下compile该项目,也可以直接把这个类 CircularAnim 拷

Android Library to create Lottie animation view dialog easily with a lot of customization
Android Library to create Lottie animation view dialog easily with a lot of customization

LottieDialog Android Library to create Lottie animation view dialog easily with a lot of customization Why you should use Lottie Dialog You have no li

Android Library to create Lottie animation view dialog easily with a lot of customization
Android Library to create Lottie animation view dialog easily with a lot of customization

Android Library to create Lottie animation view dialog easily with a lot of customization

ArcAnimator helps to create arc transition animation: 2.3.+
ArcAnimator helps to create arc transition animation: 2.3.+

ArcAnimator ArcAnimator helps to create arc transition animation: 14+ | ArcAnimator Demo | TransitionLoop Demo* *TransitionLoop Prototype by Min-Sang

This is a simple util to create Activity transition animation
This is a simple util to create Activity transition animation

TransitionHelper This is a simple util to create Activity transition animation API compatible with Android 2.2+ 中文说明 Screenshots How to use 1.startAct

Automatically manipulates the duration of animations dependent on view count. Quicksand .. the more you struggle.
Automatically manipulates the duration of animations dependent on view count. Quicksand .. the more you struggle.

QuickSand When showing a really enchanting explanatory animation to your users, but you know that after a while it'll get tedious and would stop users

Comments
  • update LoadingDialog.java dialog 匀速转动。

    update LoadingDialog.java dialog 匀速转动。

    hi,z56402344 这个LoadingDialog.java旋转的时候不是匀速的, 在本类中的 initAnim()函数中,增加代码如下: private void initAnim() { mAnim = new RotateAnimation(360, 0, Animation.RESTART, 0.5f, Animation.RESTART, 0.5f); mAnim.setDuration(2000); mAnim.setRepeatCount(Animation.INFINITE); mAnim.setRepeatMode(Animation.RESTART); mAnim.setStartTime(Animation.START_ON_FIRST_FRAME); LinearInterpolator lin = new LinearInterpolator();//设置匀速转动 mAnim.setInterpolator(lin); }

    opened by SniperQian 0
  • update LoadingDialog.java

    update LoadingDialog.java

    hi,z56402344 这个LoadingDialog.java旋转的时候不是匀速的, 在本类中的 initAnim()函数中,增加代码如下: private void initAnim() { mAnim = new RotateAnimation(360, 0, Animation.RESTART, 0.5f, Animation.RESTART, 0.5f); mAnim.setDuration(2000); mAnim.setRepeatCount(Animation.INFINITE); mAnim.setRepeatMode(Animation.RESTART); mAnim.setStartTime(Animation.START_ON_FIRST_FRAME); LinearInterpolator lin = new LinearInterpolator();//设置匀速转动 mAnim.setInterpolator(lin); }

    opened by SniperQian 0
Owner
DuGuang
Love your love!
DuGuang
Chandrasekar Kuppusamy 799 Nov 14, 2022
Custom-view-animated-file-downloader - Custom Views, Animations, Broadcast Receivers, Notifications

Downloader App Custom views , Drawing with Canvas, Animations (with motionlayout

null 2 Jun 24, 2022
Lollipop ViewAnimationUtils.createCircularReveal for everyone 4.0+

CircularReveal Lollipop ViewAnimationUtils.createCircularReveal for everyone 14+ Yotube Video Checout demo application How to use: Use regular RevealF

Ozodrukh 2.5k Dec 29, 2022
Animated-splash-screen - Animate your Splash Screen using Lottie files.

Animated Splash Screen This small project shows how you can add animation into your android projects or create beautiful looking Splash Screen or Laun

Aashish Ace 0 Jan 2, 2022
create your custom themes and change them dynamically with ripple animation

Android Animated Theme Manager create your custom themes and change them dynamically with ripple animation Features support java and kotlin projects.

Iman Dolatkia 601 Dec 22, 2022
FastHub - Yet another open-source GitHub client app but unlike any other app

FastHub - Yet another open-source GitHub client app but unlike any other app

zeromake 15 Nov 20, 2022
This a demo application with animated SVG animation of Smiley

Animated-Smiley-Rating Animated Customer feedback and rating UI ?? License Copyright 2021 Aiman Muzafar Licensed under the Apache License, Version 2.0

Aiman Muzafar 12 Aug 12, 2021
Backarrow-animation-example - Animate back arrow to close button in Compose using animated drawables

Animate Back Arrow to Close Icon in Compose This is a simple demo for animated v

Jose Mateo 3 Feb 17, 2022
ActSwitchAnimTool make the Animation easy to implements, and it compat the version of Android 4.0 or above.

ActSwitchAnimTool As well as we know, Android 5.0 has been support more Animation(just like ViewAnimationUtils~). Maybe some developers can implements

Acropolis 573 Nov 23, 2022
FragmentTransactionExtended is a library which provide us a set of custom animations between fragments.

FragmentTransactionExtended FragmentTransactionExtended is a library which provide us a set of custom animations between fragments. FragmentTransactio

Antonio Corrales 1.1k Dec 29, 2022