How can I get the same undefined ProgressBar as ICS with 2 rotating circles?

后端 未结 3 1779
梦如初夏
梦如初夏 2021-01-31 18:00

I am currently writing an open source project that aims to port the famous Holo theme to previous versions of Android (since 1,6!!!)

Everything works fine and I am reall

相关标签:
3条回答
  • 2021-01-31 18:27

    I'm not sure, but I think the <rotate> tag inside a layer-list is simply not compatible with Android 1.6.

    By looking in the Donut (1.6) source code I see that the spinner is implemented in this way (progress_medium.xml):

    <animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
        android:drawable="@drawable/spinner_black_48"
        android:pivotX="50%"
        android:pivotY="50%"
        android:framesCount="12"
        android:frameDuration="100" />
    

    You could try that with the Holo drawables.

    Hope it helps,
    Yuvi

    0 讨论(0)
  • 2021-01-31 18:33

    As addendum to Profete162's answer: I know that Jake has managed to bypass this limitation in his implementation for SherlockActionBar and make both the spinning images visible. Looking at the source code for abs__progress_medium_holo.xml it looks like he simply flipped around the fromDegrees and toDegrees values, although there might be more to it that I'm not aware of.

    0 讨论(0)
  • 2021-01-31 18:41

    Just found the answer here!

    https://stackoverflow.com/a/8697806/327402

    Very usefull post!

    There is indeed a platform limitation, although it's not what you might think. The issue is that pre-API11, RotateDrawable had some crude code in it to require that the animation rotate clockwise by checking if toDegrees was greater than fromDegrees; if not, the two were forced equal to each other. If you modified your example to have the second item move in a forward direction (from 0 to 720, or even -720 to 0), both images would animate fine on all platforms; though I realize that defeats the purpose of what you're aiming for.

    Take a look at the cached version Google Codesearch has of RotateDrawable.inflate(), which is the 2.3 version of the method used to turn the XML into the object, and you'll see what I mean.

    RotateDrawable.java ...the offending code is around line 235...

        float fromDegrees = a.getFloat(
                com.android.internal.R.styleable.RotateDrawable_fromDegrees, 0.0f);
        float toDegrees = a.getFloat(
                com.android.internal.R.styleable.RotateDrawable_toDegrees, 360.0f);
    
        toDegrees = Math.max(fromDegrees, toDegrees); //<--There's the culprit
    

    This takes an XML block like the second item that you have there, and turns it into a RotateDrawable that ends up with the same value for fromDegrees and toDegrees (in your case, 720), causing the image to simply stand still. You can visible test this by setting the start value to some value not a multiple of 360 (like 765). You'll see that the image still does not animate, but is rotated to the initial coordinate.

    This awkward check was removed in the Honeycomb/ICS sources, which is why you can do backwards rotation on those platforms. Also, it doesn't look like there is a way to set these values from Java code, so a custom RotateDrawableCompat may be in your future :)

    HTH

    0 讨论(0)
提交回复
热议问题