3

我的 ProgressDialog 有一个自定义动画,它是这样设置的:

pd.setIndeterminateDrawable(c.getResources().getDrawable(R.anim.progress_animation));

progress_animation是这样的:

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="0"
    android:interpolator="@android:anim/linear_interpolator"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatCount="infinite"
    android:toDegrees="358" >

    <shape
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="8"
        android:useLevel="false" >
        <size
            android:height="48dip"
            android:width="48dip" />

        <gradient
            android:centerColor="#4c737373"
            android:centerY="0.50"
            android:endColor="#E66A0F"
            android:startColor="#4c737373"
            android:type="sweep"
            android:useLevel="false" />
    </shape>

</animated-rotate>

这会给我一个橙色的纺车,但这似乎比 ProgressDialog 中的默认纺车“更慢”或更迟钝。我尝试将android:toDegrees360 设置为 358,但没有运气。我还启用了硬件加速。无论如何我可以让这个动画更流畅,或者更快?

谢谢!

4

3 回答 3

5

使用“旋转”而不是“动画旋转”并更改 android:toDegrees 应该让它更快。

<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@android:anim/linear_interpolator"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toDegrees="2160" />
于 2014-07-29T04:15:45.477 回答
2

这对我有用:

在 drawable(created) 处创建 my_progress_indeterminate.xml。load_spool.png 是要旋转的图像。

   <?xml version="1.0" encoding="utf-8"?>
  <rotate xmlns:android="http://schemas.android.com/apk/res/android"
     android:drawable="@drawable/load_spool"
     android:pivotX="50%"
     android:pivotY="50%"
     android:fromDegrees="0"
     android:toDegrees="2160">
  </rotate> 

布局:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

 <ProgressBar
    android:id="@+id/progressBar1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:indeterminateDrawable="@drawable/my_progress_indeterminate" />

 </LinearLayout>
于 2014-08-31T08:29:33.197 回答
1

try android:toDegrees="1080" i my case it works .... just try this

于 2013-01-08T10:51:55.960 回答