Android笔记(|Android笔记: ProgressBar 圆形进度条颜色的设置)

你是不是还在为设置进度条的颜色而烦恼呢……别着急,且看如下如何解决。
ProgressBar分圆形进度条和水平进度条
我这里就分享下如何设置圆形进度条的颜色吧,希望对大家会有帮助。
源码如下:
布局文件代码:
[html] view plain copy print ?

  1. android:id="@+id/progressbar"
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:indeterminateDrawable="@drawable/progressbar"
  5. />
此XML文件新建在drawable目录下:文件名为:progressbar
[html] view plain copy print ?
  1. xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:pivotX="50%" android:pivotY="50%"
  3. android:fromDegrees="0"
  4. android:toDegrees="360">
  5. android:shape="ring"
  6. android:innerRadiusRatio="3"
  7. android:thicknessRatio="8"
  8. android:useLevel="false">
  9. android:type="sweep"
  10. android:useLevel="false"
  11. android:startColor="#6BD3FF"
  12. android:centerColor="#FF7121"
  13. android:centerY="0.50"
  14. android:endColor="#FFFF00" />

【Android笔记(|Android笔记: ProgressBar 圆形进度条颜色的设置)】至于设置水平进度条的颜色,大家请百度,Google之,谢过。
?? ??

    推荐阅读