最新回答 / DS_AGS
有代码比较工具,比如meld,compare,用工具让两个文件比较一下!不要看了几遍!有些时候就是一个很微小的差距都会导致结果差好多的!但是眼睛是不可能看的那么细的!实在不行把代码贴出来!
2016-04-19
(float) (Math.sin(Math.toRadians((i - 1) * 90 / (6 - 1))) * 200)
6是要展开的图标数,200是半径
按照上面程序加入translationX,和translationY中可以以扇形展开。
6是要展开的图标数,200是半径
按照上面程序加入translationX,和translationY中可以以扇形展开。
2016-04-12
听这个老师的课简直就是一种享受,不仅讲得好,而且有一种越学越带劲的感觉,我已经学了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