最新回答 / DS_AGS
有代碼比較工具,比如meld,compare,用工具讓兩個文件比較一下!不要看了幾遍!有些時候就是一個很微小的差距都會導(dǎo)致結(jié)果差好多的!但是眼睛是不可能看的那么細的!實在不行把代碼貼出來!
2016-04-19
(float) (Math.sin(Math.toRadians((i - 1) * 90 / (6 - 1))) * 200)
6是要展開的圖標(biāo)數(shù),200是半徑
按照上面程序加入translationX,和translationY中可以以扇形展開。
6是要展開的圖標(biāo)數(shù),200是半徑
按照上面程序加入translationX,和translationY中可以以扇形展開。
2016-04-12
聽這個老師的課簡直就是一種享受,不僅講得好,而且有一種越學(xué)越帶勁的感覺,我已經(jīng)學(xué)了4,5門他的課,真的贊,我看好你老徐!??!
2016-03-25
最新回答 / Terara
有一個setRepeatCount()方法,是設(shè)置重復(fù)的方法 這個監(jiān)聽器應(yīng)該是在動畫重復(fù)的時候調(diào)用的吧
2016-03-24
比如調(diào)用ObjectAnimator.ofFloat(view,”rotationX“,0,90),傳入rotationX就會不斷調(diào)用view的
setrotationX方法,依次類推,ObjectAnimator的本質(zhì)就是這樣。
setrotationX方法,依次類推,ObjectAnimator的本質(zhì)就是這樣。
2016-03-05
關(guān)于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