Android-Anim-Playground

Android-Anim-Playground

Latest animation ideas I developed to make apps more attractive.

Why having such a repository?

Through all projects I‘ve been through, no matter how reliable the app you are developing can be, there is one thing that users also expect from your app: animations and nice effects. Each project is always a playground to try new things, using new and better architectures, but also creating nice animations. I‘m still learning Android, at the beginning it seems that this platform is using static design with the xml language, but if you browse blogs and pay attention to the Android documentation, you‘ll discover that there is space for animations!

Content

This repository will be probably be updated from time to time, as I start a new project anc create new animations for instance. From now, I have some path, svg and fragments animations. This inspiration comes from those articles:

http://itlanbao.com/preview.aspx#1,0

http://itlanbao.com/preview.aspx#1,0

Contribution

Feel free to contribute to this repository with your own knowledge, and maybe improve those animations :)

查看更多在《IT蓝豹》www.itlanbao.com

时间: 2024-09-17 10:27:12

Android-Anim-Playground的相关文章

android anim 动画效果(转)

动画效果编程基础--AnimationAndroid      动画类型      Android的animation由四种类型组成      XML中    alpha    渐变透明度动画效果    scale    渐变尺寸伸缩动画效果    translate    画面转换位置移动动画效果    rotate    画面转移旋转动画效果        JavaCode中    AlphaAnimation    渐变透明度动画效果    ScaleAnimation    渐变尺寸伸缩

android anim 动画效果

动画效果编程基础--AnimationAndroid       动画类型       Android的animation由四种类型组成       XML中    alpha    渐变透明度动画效果    scale    渐变尺寸伸缩动画效果    translate    画面转换位置移动动画效果    rotate    画面转移旋转动画效果          JavaCode中    AlphaAnimation    渐变透明度动画效果    ScaleAnimation    渐

android - anim translate中 fromXDelta、toXDelta、fromYDelta、toXDelta属性

<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="800" android:fromYDelta="115%" android:interpolator="

(转)android - anim translate中 fromXDelta、toXDelta、fromYDelta、toXDelta属性

2012-03-23 15:51 16144人阅读 评论(5) 收藏 举报 android [java] view plaincopy <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:fromXDelta="0" android:toXDelta="100%" android:duration="30

Android 动画(anim)详解

Android 动画(anim)详解 就我所知,简单阐述一下: Android的animation由四种类型组成:alpha(透明度).scale(缩放).translate(位移).rotate(旋转) XML配置文件中 android:alpha 渐变透明度动画效果 android:scale 渐变缩放动画效果 android:translate 画面转换位置移动动画效果 android:rotate 画面转移旋转动画效果 Java Code代码中 AlphaAnimation 渐变透明度动

android tv焦点特效实现浅析

Android TV上的焦点凸显特效相信大家都看到过,那么我们就来实现它吧,首先上张效果图. 先说一下实现原理,主要通过重写RelativeLayout实现item,之后在其中加入scalanimation动画效果.刚开始处理时,还是发现了一些问题,比如item放大后会被其他item遮挡,如何添加选中边框等等,以及动画的实现等等.下面放上实现细节. 首先是item的代码: <view xmlns:android="http://schemas.android.com/apk/res/and

Android攻城狮四种基础动画

AlphaAnimation(透明动画) 1.xml文件 <set xmlns:android="http://schemas.android.com/apk/res/android"> <!-- 渐变动画,表示从透明度10%到100%,持续时间为1秒 --> <alpha android:fromAlpha="0.1" android:toAlpha="1" android:duration="1000&

android的ImageSwitcher和TextSwitcher

ImageSwitcher: activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_heig

Android Animation 动画学习笔记

最近两天学了android 动画方面的知识,从一点不懂到自己研究确实有收获. Animation 分为: <alpha  /> 透明度渐变 <scale  /> 尺寸渐变 <translate  /> 位移动画 <rotate  /> 旋转动画       在XML 和在JavaCode中都可以定义,方法分别为 XML中 javaCode中 <alpha  /> AlphAnimation <scale  /> ScaleAnimat

Android开发之Tween(补间动画)完全解析(下)

欢迎转载,转载请注明出处:http://blog.csdn.net/dmk877/article/details/51980734 在上一篇文章中,我们详细讨论了Tween动画的xml的实现以及interpolator的使用,相信通过上篇文章大家对Tween动画的xml属性的配置会有一个详细的理解,当然这篇文章也是承接上篇文章,所以强烈建议先阅读上篇文章:Android开发之Tween(补间动画)完全解析(上),这篇文章将从代码的角度实现上篇文章的效果.如有疑问请留言,如有谬误欢迎批评指正. T