Http://blog.sina.com.cn/s/blog_3e333c4a010133ze.html
1, the establishment of Myprogress.xml in Res/anim
<?xml version= "1.0" encoding= "UTF-8"?>
<animation-list android:oneshot= "false"
Xmlns:android= "Http://schemas.android.com/apk/res/android" >
<item android:duration= "android:drawable=" @drawable/progress1 "/>
<item android:duration= "android:drawable=" @drawable/progress2 "/>
<item android:duration= "android:drawable=" @drawable/progress3 "/>
<item android:duration= "android:drawable=" @drawable/progress4 "/>
</animation-list>
2, in the Style.xml
<style name= "oaprogress" parent= "@android: Style/widget.progressbar" >
<item name= "android:indeterminatedrawable" > @anim/myprogress</item>
<item name= "android:backgrounddimenabled" >true</item>
</style>
3. In Layout
<progressbar
Android:layout_width= "Wrap_content"
android:layout_height= "Wrap_content"
Style= "@style/oaprogress"
/>