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 really proud of my work, but the problem I am facing now is to get the ProgressBar totally looking like the ICS one.
I used the same xml code than Android source: (progress_medium_holo.xml)
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:drawable="@drawable/spinner_48_outer_holo"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="0"
android:toDegrees="1080" />
</item>
<item>
<rotate
android:drawable="@drawable/spinner_48_inner_holo"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="720"
android:toDegrees="0" />
</item>
</layer-list>
With same png:
spinner_76_outer_holo.png and spinner_76_inner_holo.png
white pic =>
But unfortunately, I only get one circle...
If you don't understand what I mean, you can try this app on a pre-ICS device:
https://play.google.com/store/apps/details?id=com.WazaBe.HoloDemo
FULL SOURCE IS HERE: https://github.com/ChristopheVersieux/HoloEverywhere
Thank a lot for your help