关于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
已采纳回答 / 襄阳老菜
打开你的SDK Manager 就能看到,你下载过不同版本的 platform\tools\system img 等,这里也可以下载 APIDemo ,名字叫 Simples for SDK
2016-02-24
最赞回答 / zhangyu123
可以再增加一个boolean变量用来判断动画是否结束。设置动画的结束时的监听,在里面改变boolean值。当boolean表示动画还没结束的情况下时,直接return。这样方法就不执行了。
2016-01-22
ValueAnimator --数值发生器,可以实现很多很灵活的动画效果;
ObjectAnimator --继承于ValueAnimator,可以很好滴使用属性对话框架;
AnimatorUpdateListener -- 用于动画监听器
AnimatorListenerAdapter-- 用于动画监听器
PropertyValuesHolder --用于控制动画集合的显示效果
Animatorset --用于控制动画集合的显示效果
TypeEvaluators ---值计算器,用于控制值变化的规律
Interprolators ---插值计算器,用于控制值变化的规律
ObjectAnimator --继承于ValueAnimator,可以很好滴使用属性对话框架;
AnimatorUpdateListener -- 用于动画监听器
AnimatorListenerAdapter-- 用于动画监听器
PropertyValuesHolder --用于控制动画集合的显示效果
Animatorset --用于控制动画集合的显示效果
TypeEvaluators ---值计算器,用于控制值变化的规律
Interprolators ---插值计算器,用于控制值变化的规律
2016-01-18