听这个老师的课简直就是一种享受,不仅讲得好,而且有一种越学越带劲的感觉,我已经学了4,5门他的课,真的赞,我看好你老徐!!!
2016-03-25
比如调用ObjectAnimator.ofFloat(view,”rotationX“,0,90),传入rotationX就会不断调用view的
setrotationX方法,依次类推,ObjectAnimator的本质就是这样。
setrotationX方法,依次类推,ObjectAnimator的本质就是这样。
2016-03-05
关于propertyName,文档是这样描述的:
Sets the name of the property that will be animated. This name is used to derive
a setter function that will be called to set animated values.
For example, a property name of foo will result
in a call to the function setFoo() on the target object.
Sets the name of the property that will be animated. This name is used to derive
a setter function that will be called to set animated values.
For example, a property name of foo will result
in a call to the function setFoo() on the target object.
2016-03-05
ValueAnimator --数值发生器,可以实现很多很灵活的动画效果;
ObjectAnimator --继承于ValueAnimator,可以很好滴使用属性对话框架;
AnimatorUpdateListener -- 用于动画监听器
AnimatorListenerAdapter-- 用于动画监听器
PropertyValuesHolder --用于控制动画集合的显示效果
Animatorset --用于控制动画集合的显示效果
TypeEvaluators ---值计算器,用于控制值变化的规律
Interprolators ---插值计算器,用于控制值变化的规律
ObjectAnimator --继承于ValueAnimator,可以很好滴使用属性对话框架;
AnimatorUpdateListener -- 用于动画监听器
AnimatorListenerAdapter-- 用于动画监听器
PropertyValuesHolder --用于控制动画集合的显示效果
Animatorset --用于控制动画集合的显示效果
TypeEvaluators ---值计算器,用于控制值变化的规律
Interprolators ---插值计算器,用于控制值变化的规律
2016-01-18