自定义ProgressBar旋转不顺畅

时间:2014-06-21 18:21:28

标签: android rotation progress-bar android-drawable

查看this question,我创建了以下文件:

res/drawable/spinner.xml

<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/loading"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:fromDegrees="0"
android:toDegrees="718"
android:fillAfter="false"
android:startOffset="0"
android:interpolator="@android:anim/linear_interpolator"
 />

res/layout/layout.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

<ProgressBar
    android:id="@+id/splashSpinnerImageView"
    android:layout_width="260dp"
    android:layout_height="260dp"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:indeterminateDrawable="@drawable/spinner"
    />

</RelativeLayout>

仍然是旋转器旋转,可见的hickups并不是很顺利。我用Sony Xperia S和Z2测试了它,它具有相同的行为。

如何增加ProgressBar的苍白度呢?我应该将ProgressBar转换为ImageView和/或以编程方式启动动画吗?

TIA

更新:

我尝试在我的项目中使用默认的android progress_large.xml,但最“有趣”的属性

android:framesCount="12"
android:frameDuration="100" 
无法找到

因为它们被定义为私有

1 个答案:

答案 0 :(得分:1)

我在其他地方发现了一个问题。对于我最顶级的RelativeLayout,我使用了PNG 1080x1920作为背景。它的重量为480 kB,即使是默认的`ProgressBar&#39; - 感谢#pskink的提示 - 正在和hickups一起旋转。

然后我尝试用720x1280像素分辨率@ 360 kB来缩小它,并且 - 魔法! - 旋转器开始顺利旋转!

Android似乎有高分辨率图片的问题......