Android Animate Rotate

前端 未结 5 477
醉酒成梦
醉酒成梦 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 01:00

    I don't know how to work around the private attributes, I have the same problem.

    By the way if you want to change those attributes of the ProgressBar:

    android:indeterminateOnly="true"
    android:indeterminateBehavior="cycle"
    android:indeterminateDuration="3500"
    android:indeterminateDrawable="@drawable/pia_sivuvator"
    

    you can do it easily with the Styles framework defining in the values/styles.xml file a ProgressBar style extending the standard android one:

    
    

    and then applying it to the progress bar in the xml layout file.

    ...
    
    ...
    

提交回复
热议问题