Android Animate Rotate

前端 未结 5 467
醉酒成梦
醉酒成梦 2020-12-08 00:12

I did some digging in Android code, and saw the use of in the indeterminate progress bar. after trying to create my own drawable with this tag:



        
5条回答
  •  借酒劲吻你
    2020-12-08 00:47

    Here is the Simple Explanation of the Rotation Animation try this this will help you

    http://androidtutorials60.blogspot.in/2013/09/simple-rotate-animation-in-android.html

    
      android:duration="4000"
      android:fromdegrees="0"
      android:pivotx="50%"
      android:pivoty="50%"
      android:todegrees="360"
      android:toyscale="0.0"
    
    

提交回复
热议问题