以前写博客都是用百度空间,总感觉不专业,访问量少,好友少,里边可运用的资源也少,所以昨天网上查了一下,觉得iteye社区还不错,就申请了一个iteye帐号,今天开始写博,希望大家多关注多交流,共同进步.
最近一直在做中国最强音app的开发,好不容易闲了下来,觉得在做中国最强音app的时候动画方面的知识还不够扎实,所以这周腾出手来主要学习了animation和graphics方面的知识,现在先将animation方面的知识总结如下:
Android框架提供了两种动画:property animation(android3.0以上会有)和view animation.其中建议选property animation,因为它要更强大更高效,除了上边两种,你还可以运用drawable animation,它可以帮你导入drawable中的资源并且一个一个显示他们.
一,Property animation:这种动画系统帮助你实现任何对象的动画,包括那些没有被添加到界面当中的对象.
二,View animation:这是一种比较老的方式并且只能对Views进行使用,使用和设置起来比较容易.
三,Drawable animation:像电影一样,一个drawable接一个进行播放.
What is propery animation:
像谷歌原话的解释:The property animation system is a robust framework that allows you to animate almost anything.在一定的时间内,property animation可以改变一个property(a field in an object)的值,比如位置,动画持续时间,动画开始时间等,来控制一个动画.
Property animation的属性包括:
- Duration:动画持续的时间,系统默认为300ms.
- Time interpolation:动画插入器,如LinearInterpolator动画以均匀的速率改变
- Repeat count and mode,动画重复次数和返回状态,restart 和 reverse.
- Animation sets:可以将一系列动画放入一个集合中一起进行或者一个一个进行.
-
Frame refresh delay,可以设置动画的刷新时间,系统自定义为10ms.
How property animation works:
// http://developer.android.com/guide/topics/graphics/prop-animation.html#property-vs-view
How property animation differs from view animation
view animation 只可以操作是view的对象,并且只能对view进行rotate,scale,translate和alpha操作.view animation另一个不能实现的功能就是it only modified where the View was drawn, and not the actual View itself,意思是它动画的时候其实那个view实际是不在显示的位置上的.
The property animation system can animate Views on the screen by changing the actual properties in the View objects. In addition, Views also automatically call the invalidate()
method to refresh the screen whenever its properties are changed. The new properties in the view class that facilitate property animations are:
translationX
andtranslationY
: 相对于父控件左上角的位置rotation
,rotationX
, androtationY
: 旋转的中心点的坐标scaleX
andscaleY
: 缩放的中心点的坐标pivotX
andpivotY
: 中心点的坐标x
andy
: 距离坐标-
alpha
: 透明度,值在0到1之间
How to accompish an animation:
1,Multiple ObjectAnimator objects
ObjectAnimator animX = ObjectAnimator.ofFloat(myView, "x", 50f); ObjectAnimator animY = ObjectAnimator.ofFloat(myView, "y", 100f); AnimatorSet animSetXY = new AnimatorSet(); animSetXY.playTogether(animX, animY); animSetXY.start();
2,One ObjectAnimator
PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat("x", 50f); PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat("y", 100f); ObjectAnimator.ofPropertyValuesHolder(myView, pvhX, pvyY).start();
3,ViewPropertyAnimator
myView.animate().x(50f).y(100f);
How to Declaring Animation in XML:
android开发允许你使用xml文件代替编程来运用动画,通过xml文件,你可以在多个activity中很容易的重用或重编辑你的动画.
为了区分新的property animation 和旧的view animation,从android3.1以上,将文件名由res/anim改成res/animator, 在xml中可以设置三种动画属性:
ValueAnimator
-<animator>
ObjectAnimator
-<objectAnimator>
AnimatorSet
-<set>
用法如下:
<setandroid:ordering="sequentially"> <set> <objectAnimator android:propertyName="x" android:duration="500" android:valueTo="400" android:valueType="intType"/> <objectAnimator android:propertyName="y" android:duration="500" android:valueTo="300" android:valueType="intType"/> </set> <objectAnimator android:propertyName="alpha" android:duration="500" android:valueTo="1f"/></set>
代码中:
AnimatorSetset=(AnimatorSet)AnimatorInflater.loadAnimator(myContext, R.anim.property_animator);set.setTarget(myObject);set.start();
Animation api overview:
在android.animation包中可以找到很多property animation的api,在android.view.animation包中可以找到很多定义好的imterpolators.下边是propery animation system 中的组件.
1,what is included in animator class
- ValueAnimator继承于animator,google 解释为The main timing engine for property animation that also computes the values for the property to be animated,就是每隔10ms计算图画的位置
- ObjectAnimator继承于ValueAnimator,google 解释为A subclass of
ValueAnimator
that allows you to set a target object and object property to animate,比ValueAnimator多出的功能就是不仅可以计算位置,还可以将图形的新的位置上刷新出来. - AnimatorSet,Provides a mechanism to group animations together so that they run in relation to one another就是把很多动画组合起来进行刷新显示.
2,what and how to use Evaluators
Evaluators tell the property animation system how to calculate values for a given property.如IntEvaluator/FloatEvaluator/ArgbEvaluator/TypeEvaluator.
Using a typeEvaluator:
public class FloatEvaluator implements TypeEvaluator { public Object evaluate(float fraction, Object startValue, Object endValue) { float startFloat = ((Number) startValue).floatValue(); return startFloat + fraction * (((Number) endValue).floatValue() - startFloat); } }
3,what and how to use interpolator
A time interpolator defines how specific values in an animation are calculated as a function of time.
AccelerateDecelerateInterpolator
先加速后减速,
accelerateInterpolator
一直加速
AnticipateInterpolator
:表示开始的时候向后然后向前甩
OvershootInterpolator
:表示向前甩一定值后再回到原来置,
BounceInterpolator
:表示动画结束的时候弹起,
CycleInterpolator
:表示动画循环播放特定的次数,速率改变沿着正弦曲线
DecelerateInterpolator
:表示在动画开始的地方快然后慢
LinearInterpolator
:表示以常量速率改变
AnticipateOvershootInterpolator
:开始的时候向后然后向前甩一定值后返回最后的值
-
TimeInterpolator,Aninterface that allows you to implement your own interpolator.
Using interpolators:
AccelerateDecelerateInterpolator:
public float getInterpolation(float input) { return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f; }
LinearInterpolator:
public float getInterpolation(float input) { return input; }
Animating with ValueAnimator/Animating with ObjectAnimator:
这两种animator
的运用方法见demo,demo
中还包括了AnimatorSet
和animatorListener
的用法.
Animating Layout changes to ViewGroup:
刚才提到,perporty animation
不仅可以用到view
上,
还可以用到wiewgroup
中.
APPEARING:view
正子出现的状态
CHANGE_APPEARING
:view正在出现的父控件的状态DISAPPEARING
:view
正子消失的状态
CHANGE_DISAPPEARING
:view正在消失的父控件的状态
相关推荐
请把文件复制在User/.gradle/文件路径下面完成android studio加速,并重新启动AS
状态(State)和动画(Animations)允许动态改变元素的属性,如`PropertyAnimation`改变属性值,`SequentialAnimation`和`ParallelAnimation`控制动画序列。 数据绑定(Binding)是QML中的关键概念,它允许将数据...
在使用Maven进行项目管理和构建时,我们可能会遇到一些环境配置相关的问题。其中一个常见的错误信息就是"-Dmaven.multiModuleProjectDirectory system property is not set"。这个错误提示通常意味着Maven没有正确地...
在材料科学领域,特别是纳米科技的研究中,理解金属纳米线材的力学性质是至关重要的。本文探讨了面心立方(fcc)金属纳米线材的杨氏模量,也就是材料抵抗形变的能力,通过对组成纳米线材的结构单元的原子间相互作用...
在本文中,我们将深入探讨如何在ExtJS中扩展PropertyGrid以实现分组功能,这个问题源自于原生ExtJS PropertyGrid控件不支持属性分组。首先,我们要理解PropertyGrid的基本结构,它主要由以下几个核心部分组成: ...
在其他情况下,您将获得类型安全的模拟,并且至少可以确保cannot read propery of null或undefined is not a function cannot read propery of null undefined is not a function SSR中undefined is not a function...
额外功能:可学习的自然语言处理 构建用户模型 cd directory java -cp stanford-ner.jar edu.stanford.nlp.ie.crf.CRFClassifier -prop propery_file_name.prop 截屏 用户指南 对于命令行界面,用户可以使用以下...
+ Propery RowDetailPanelControl is added in public section. Use this property to add components on panel of detail information at RunTime. Use next code: MyControl.Parent := DBGridEh1....
Vendormac 这是用于生成Vendor Mac Map(例如Propery文件,xml文件和apple枚举元素)的简单实用程序。前提来自源文件。 另存为oui.txt(默认源文件名) 注意:定期需要更新用法 cmd> java -jar vendormac.jarcmd> ...
该库基于本机Propery ,添加了许多其他功能,最重要的是,为可插入中间件建立了API。 用法 $ npm install kefir.db import K from "kefir" import * as D from "kefir.db" let inc = ( x ) => x + 1 let dec = ( x ...
在以下示例中,有 4 个主要部分: [{min / max} - {propery} ~= "{value}(unit)" ][ min-width ~= "40em" ] 按照计算顺序,首先有一个属性或查询类型,通常可以与其他数字表示变量(例如宽度、纵横比或面积)互换。...
6. **物业展示(propery-single-side-bar.html, properties-right-bar.html, properties-right-side-bar.html, properties-right-bar-2.html, properties-list-2.html, properties-list.html)**:这些文件涵盖了...
加载OWC11.DLL的方法通常是通过设置ActiveX控件的“Propery Node”(属性节点)。在控件的属性节点中,我们指定控件的CLSID(Class ID),对于OWC11.DLL,可能是Excel.Chart或其他特定的Office组件。同时,还需要...
******************************************* ************ WPTOOLS 6 History ************ ... Ziersch and **** **** WPCubed GmbH, Munich, Germany ******** ******************************************* ...
Creating a record and accessing its propery is only what you need. Very small memory footprint Last time I checked the dbfDotNet dll was 50Kb. Other databases are 1Mb to 10Mb. I would appreciate if...
[Serializable] public class EXIF { #region -- Class level members -- // Class level members. private Image _picture; #endregion #region -- Constructors -- // Constructors. ...