我正在使用indeterminateDrawable
属性使用自定义进度条,代码如下,当我删除indeterminateDrawable
属性时,它显示在中心,但没有显示在这个属性的中心。请帮我。
<LinearLayout
android:id="@id/android:empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ProgressBar
android:id="@+id/workingProgressBar"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:indeterminateDrawable="@drawable/startup_anim"
android:indeterminateOnly="true" />
</LinearLayout>
可绘制/startup_anim.xml
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/animation4"
android:duration="100"/>
<item
android:drawable="@drawable/animation3"
android:duration="100"/>
<item
android:drawable="@drawable/animation2"
android:duration="100"/>
<item
android:drawable="@drawable/animation1"
android:duration="100"/>
<item
android:drawable="@drawable/animation0"
android:duration="100"/>
</animation-list>