我的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:toDegrees
从360设置为358,但没有运气。我也启用了硬件加速。无论如何我可以让这个动画更流畅,更快?
谢谢!
答案 0 :(得分:4)
使用“旋转”代替“动画旋转”并更改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" />
答案 1 :(得分: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>
答案 2 :(得分:1)
尝试android:toDegrees =“1080”我的情况就可以了....只是试试这个