我正在使用自定义进度条,效果很好。
我在代码中使用了开始,居中,结束颜色。
但是需要在每次旋转时更改进度条的颜色。 (每当进度条达到360度旋转时,颜色都必须更改。)
请使用单色旋转找到以下代码。
progressdialog.xml
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="1"
android:toDegrees="1080" >
<shape
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="20"
android:useLevel="false" >
<size
android:height="48dip"
android:width="48dip" />
<gradient
android:centerColor="@color/translucent_red"
android:centerY="0.50"
android:endColor="@color/translucent_red"
android:startColor="#4fff"
android:type="sweep"
android:useLevel="false" />
</shape>
main_layout.xml
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:visibility="gone"
android:indeterminateDrawable="@drawable/progressdialog" >
</ProgressBar>
任何帮助都会非常感激。