553

我在我的 Android 应用程序中使用水平进度条,我想更改它的进度颜色(默认为黄色)。我如何使用code(不是 XML)来做到这一点?

4

41 回答 41

514

对于水平 ProgressBar,您也可以使用ColorFilter,如下所示:

progressBar.getProgressDrawable().setColorFilter(
    Color.RED, android.graphics.PorterDuff.Mode.SRC_IN);

使用颜色过滤器的红色进度条

注意:这会修改应用中所有进度条的外观。要仅修改一个特定的进度条,请执行以下操作:

Drawable progressDrawable = progressBar.getProgressDrawable().mutate();
progressDrawable.setColorFilter(Color.RED, android.graphics.PorterDuff.Mode.SRC_IN);
progressBar.setProgressDrawable(progressDrawable);

如果 progressBar 是不确定的,则使用getIndeterminateDrawable()而不是getProgressDrawable().

从 Lollipop (API 21) 开始,您可以设置进度色调:

progressBar.setProgressTintList(ColorStateList.valueOf(Color.RED));

使用进度色调的红色 ProgressBar

于 2013-04-04T11:25:43.997 回答
480

这不是以编程方式进行的,但我认为无论如何它可以帮助很多人。
我尝试了很多,最有效的方法是将此行添加到 .xml 文件中的 ProgressBar:

            android:indeterminate="true"
            android:indeterminateTintMode="src_atop"
            android:indeterminateTint="@color/secondary"

所以最后这段代码为我做了:

<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:layout_marginTop="50dp"
            android:layout_marginBottom="50dp"
            android:visibility="visible"
            android:indeterminate="true"
            android:indeterminateTintMode="src_atop"
            android:indeterminateTint="@color/secondary">

此解决方案适用于API 21+

于 2015-07-11T16:04:12.660 回答
309

很抱歉,这不是答案,但是是什么推动了从代码中设置它的要求?如果.setProgressDrawable定义正确应该可以工作

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@android:id/background">
    <shape>
        <corners android:radius="5dip" />
        <gradient
                android:startColor="#ff9d9e9d"
                android:centerColor="#ff5a5d5a"
                android:centerY="0.75"
                android:endColor="#ff747674"
                android:angle="270"
        />
    </shape>
</item>

<item android:id="@android:id/secondaryProgress">
    <clip>
        <shape>
            <corners android:radius="5dip" />
            <gradient
                    android:startColor="#80ffd300"
                    android:centerColor="#80ffb600"
                    android:centerY="0.75"
                    android:endColor="#a0ffcb00"
                    android:angle="270"
            />
        </shape>
    </clip>
</item>

<item android:id="@android:id/progress">
    <clip>
        <shape>
            <corners
                android:radius="5dip" />
            <gradient
                android:startColor="@color/progress_start"
                android:endColor="@color/progress_end"
                android:angle="270" 
            />
        </shape>
    </clip>
</item>

</layer-list>
于 2010-01-07T15:00:00.447 回答
244

对于我不确定的进度条(微调器),我只是在可绘制对象上设置了一个滤色器。效果很好,只有一条线。

将颜色设置为红色的示例:

ProgressBar spinner = new android.widget.ProgressBar(
                context,
                null,
                android.R.attr.progressBarStyle);

spinner.getIndeterminateDrawable().setColorFilter(0xFFFF0000, android.graphics.PorterDuff.Mode.MULTIPLY);

在此处输入图像描述

于 2012-06-07T09:14:23.923 回答
211

这是一个老问题,但这里没有提到使用主题。如果您的默认主题使用AppCompat,您ProgressBar的颜色将是colorAccent您定义的。

变化colorAccent也会改变你ProgressBar的颜色,但变化也会反映在多个地方。所以,如果你想要一个不同的颜色只是为了一个特定的PregressBar你可以通过应用主题来做到这一点ProgressBar

  • 扩展您的默认主题并覆盖colorAccent

    <style name="AppTheme.WhiteAccent">
        <item name="colorAccent">@color/white</item> <!-- Whatever color you want-->
    </style>
    
  • ProgressBar添加android:theme属性:

    android:theme="@style/AppTheme.WhiteAccent"
    

所以它看起来像这样:

<ProgressBar
        android:id="@+id/loading"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:padding="10dp"
        android:theme="@style/AppTheme.WhiteAccent" />

因此,您只是colorAccent为您的特定更改 a ProgressBar

注意:使用style将不起作用。你只需要使用android:theme。你可以在这里找到更多主题的使用:https: //plus.google.com/u/0/+AndroidDevelopers/posts/JXHKyhsWHAH

于 2016-07-09T13:08:28.350 回答
65

所有 API

如果使用所有 API 只需创建风格的主题

样式.xml

<resources>

    //...

    <style name="progressBarBlue" parent="@style/Theme.AppCompat">
        <item name="colorAccent">@color/blue</item>
    </style>

</resources>

并在使用中

<ProgressBar
    ...
    android:theme="@style/progressBarBlue" />

API 级别 21 及更高级别

如果在 API 级别 21 及更高级别中使用,请使用以下代码:

<ProgressBar
   //...
   android:indeterminate="true"
   android:indeterminateTintMode="src_atop"
   android:indeterminateTint="@color/secondary"/>
于 2018-09-24T14:03:38.440 回答
48

这对我有用。它也适用于较低版本。将此添加到您的 syles.xml

<style name="ProgressBarTheme" parent="ThemeOverlay.AppCompat.Light">
<item name="colorAccent">@color/colorPrimary</item>
</style>

并在 xml 中像这样使用它

<ProgressBar
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:theme="@style/ProgressBarTheme"
   />
于 2019-09-25T05:39:24.847 回答
38

这对我有用:

<ProgressBar
 android:indeterminateTint="#d60909"
 ... />
于 2017-07-06T05:40:16.570 回答
34

根据一些建议,您可以使用颜色指定形状和可剪贴画,然后设置它。我有这个以编程方式工作。我就是这样做的。。

首先确保您导入可绘制库..

import android.graphics.drawable.*;

然后使用类似于下面的代码;

ProgressBar pg = (ProgressBar)row.findViewById(R.id.progress);
final float[] roundedCorners = new float[] { 5, 5, 5, 5, 5, 5, 5, 5 };
pgDrawable = new ShapeDrawable(new RoundRectShape(roundedCorners, null,null));
String MyColor = "#FF00FF";
pgDrawable.getPaint().setColor(Color.parseColor(MyColor));
ClipDrawable progress = new ClipDrawable(pgDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);
pg.setProgressDrawable(progress);   
pg.setBackgroundDrawable(getResources().getDrawable(android.R.drawable.progress_horizontal));
pg.setProgress(45);
于 2011-03-06T09:46:33.300 回答
30

如果不确定:

((ProgressBar)findViewById(R.id.progressBar))
    .getIndeterminateDrawable()
    .setColorFilter(Color.RED, PorterDuff.Mode.SRC_IN);
于 2015-03-22T17:24:19.937 回答
24

现在在 2016 年,我发现一些棒棒糖之前的设备不支持该colorAccent设置,所以我对所有 API 的最终解决方案现在如下:

// fixes pre-Lollipop progressBar indeterminateDrawable tinting
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {

    Drawable wrapDrawable = DrawableCompat.wrap(mProgressBar.getIndeterminateDrawable());
    DrawableCompat.setTint(wrapDrawable, ContextCompat.getColor(getContext(), android.R.color.holo_green_light));
    mProgressBar.setIndeterminateDrawable(DrawableCompat.unwrap(wrapDrawable));
} else {
    mProgressBar.getIndeterminateDrawable().setColorFilter(ContextCompat.getColor(getContext(), android.R.color.holo_green_light), PorterDuff.Mode.SRC_IN);
}

对于奖励积分,它不使用任何已弃用的代码。尝试一下!

于 2016-09-14T10:31:09.800 回答
22
android:progressTint="#ffffff" 
于 2016-09-14T13:32:04.057 回答
22

这就是我所做的。工作。

进度条:

<ProgressBar
            android:id="@+id/progressBar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="4"
            android:indeterminateDrawable="@drawable/progressdrawable"
           />

progressdrawable.xml:
这里使用渐变来改变你喜欢的颜色。并且 android:toDegrees="X" 增加 X 的值并且进度条快速旋转。减少并且它旋转缓慢。根据您的需要进行定制。

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

            <shape
                android:innerRadius="20dp"
                android:shape="ring"
                android:thickness="4dp"
                android:useLevel="false" >
                <size
                    android:height="48dp"
                    android:width="48dp" />

                <gradient
                    android:centerColor="#80ec7e2a"
                    android:centerY="0.5"
                    android:endColor="#ffec7e2a"
                    android:startColor="#00ec7e2a"
                    android:type="sweep"
                    android:useLevel="false" />
            </shape>

        </rotate>

样本: 在此处输入图像描述

于 2018-01-31T06:44:23.453 回答
21

适用于 SDK 21 及以上版本

android:indeterminateTint="@color/orange"

在 XML Works 中对我来说很容易。

于 2017-04-21T12:38:48.063 回答
19

在修改默认进度条的外观/感觉时遇到了同样的问题。以下是一些希望对人们有所帮助的信息:)

  • xml 文件的名称只能包含字符:(a-z0-9_.即不能大写!)
  • 要引用您的“可绘制”,它是R.drawable.filename
  • 要覆盖默认外观,您可以使用myProgressBar.setProgressDrawable(...),但是您不能只将自定义布局引用为R.drawable.filename,您需要将其检索为Drawable
    Resources res = getResources();
    myProgressBar.setProgressDrawable(res.getDrawable(R.drawable.filename);
    
  • 您需要在设置进度/次要进度/最大值之前设置样式(之后为我设置会导致“空”进度条)
于 2011-02-28T12:41:32.593 回答
17

您可以尝试更改样式、主题或在任何您想要的地方使用 android:indeterminateTint="@color/yourColor",但只有一种方法可以在任何 Android SKD 版本上使用:

如果您的进度条不是不确定的,请使用:

progressBar.getProgressDrawable().setColorFilter(ContextCompat.getColor(context, R.color.yourColor), PorterDuff.Mode.SRC_IN );

如果您的进度条不确定,请使用:

progressBar.getIndeterminateDrawable().setColorFilter(ContextCompat.getColor(getContext(), R.color.yourColor), PorterDuff.Mode.SRC_IN );

可惜安卓这么乱!

于 2017-12-04T16:53:02.173 回答
16

在 Xml 中添加 ProgressBar

适用于 SDK 21 及以上版本

android:indeterminateTint="@color/red"
于 2021-06-23T03:04:47.033 回答
15

我是如何在水平 ProgressBar 中做到的:

    LayerDrawable layerDrawable = (LayerDrawable) progressBar.getProgressDrawable();
    Drawable progressDrawable = layerDrawable.findDrawableByLayerId(android.R.id.progress);
    progressDrawable.setColorFilter(color, PorterDuff.Mode.SRC_IN);
于 2015-12-16T11:36:05.420 回答
15

这个答案中可能没有提到一件事:

如果您的主题继承自Theme.AppCompat,ProgressBar将采用您在主题中定义的颜色"colorAccent"

所以,使用..

<item name="colorAccent">@color/custom_color</item>

..将自动将 ProgressBar 的颜色着色为@color/custom_color.

于 2016-01-21T18:53:00.630 回答
14

最简单的解决方案,如果您想更改布局 xml 文件中的颜色,请使用以下代码并使用indeterminateTint属性作为您想要的颜色。

    <ProgressBar
      android:id="@+id/progressBar"
      style="?android:attr/progressBarStyle"
      android:layout_width="wrap_content"
      android:indeterminate="true"
      android:indeterminateTintMode="src_atop"
      android:indeterminateTint="#ddbd4e"
      android:layout_height="wrap_content"
      android:layout_marginBottom="20dp"
      android:layout_alignParentBottom="true"
      android:layout_centerHorizontal="true" />
于 2017-11-25T04:27:46.127 回答
12

这个解决方案对我有用:

<style name="Progressbar.White" parent="AppTheme">
    <item name="colorControlActivated">@color/white</item>
</style>

<ProgressBar
    android:layout_width="@dimen/d_40"
    android:layout_height="@dimen/d_40"
    android:indeterminate="true"
    android:theme="@style/Progressbar.White"/>
于 2017-08-01T13:55:28.240 回答
11

更改进度条的前景色和背景色的最简单方法是

<ProgressBar
                        style="@android:style/Widget.ProgressBar.Horizontal"
                        android:id="@+id/pb_main"
                        android:layout_width="match_parent"
                        android:layout_height="8dp"
                        android:progress="30"
                        android:progressTint="#82e9de"
                        android:progressBackgroundTint="#82e9de"
                        />

只需添加

                        android:progressTint="#82e9de" //for foreground colour
                        android:progressBackgroundTint="#82e9de" //for background colour
于 2020-04-18T06:50:19.660 回答
10

相信我,最简单的解决方案就是将其粘贴到 progressBar 中:

android:indeterminateTint="@android:color/white"
于 2021-11-08T15:42:44.093 回答
9

要更改水平 ProgressBar 颜色(在 kotlin 中):

fun tintHorizontalProgress(progress: ProgressBar, @ColorInt color: Int = ContextCompat.getColor(progress.context, R.color.colorPrimary)){
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        progress.progressTintList = ColorStateList.valueOf(color)
    } else{
        val layerDrawable = progress.progressDrawable as? LayerDrawable
        val progressDrawable = layerDrawable?.findDrawableByLayerId(android.R.id.progress)
        progressDrawable?.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
    }
}

要更改不确定的 ProgressBar 颜色:

fun tintIndeterminateProgress(progress: ProgressBar, @ColorInt color: Int = ContextCompat.getColor(progress.context, R.color.colorPrimary)){
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        progress.indeterminateTintList = ColorStateList.valueOf(color)
    } else {
        (progress.indeterminateDrawable as? LayerDrawable)?.apply {
            if (numberOfLayers >= 2) {
                setId(0, android.R.id.progress)
                setId(1, android.R.id.secondaryProgress)
                val progressDrawable = findDrawableByLayerId(android.R.id.progress).mutate()
                progressDrawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
            }
        }
    }
}

它最终通常会为棒棒糖前的进度条着色

api 19 的有色进展

于 2019-04-05T14:19:13.597 回答
8

还有一件小事,如果您继承基本主题,主题解决方案确实有效,因此对于应用程序压缩,您的主题应该是:

<style name="AppTheme.Custom" parent="@style/Theme.AppCompat">
    <item name="colorAccent">@color/custom</item>
</style>

然后在进度条主题中设置这个

<ProgressBar
    android:id="@+id/progressCircle_progressBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:theme="@style/AppTheme.Custom"
    android:indeterminate="true"/>
于 2017-05-23T19:27:53.360 回答
8

只需使用:

DrawableCompat.setTint(progressBar.getIndeterminateDrawable(),yourColor)
于 2020-05-03T14:15:57.707 回答
7

只需使用:

PorterDuff.Mode mode = PorterDuff.Mode.SRC_IN;
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.GINGERBREAD_MR1) {
    mode = PorterDuff.Mode.MULTIPLY;
}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    progressBar.setProgressTintList(ColorStateList.valueOf(Color.RED));
    progressBar.setProgressBackgroundTintList(ColorStateList.valueOf(Color.RED));
} else {
    Drawable progressDrawable;
    progressDrawable = (progressBar.isIndeterminate() ? progressBar.getIndeterminateDrawable() : progressBar.getProgressDrawable()).mutate();
    progressDrawable.setColorFilter(context.getResources().getColor(Color.RED), mode);
    progressBar.setProgressDrawable(progressDrawable);
}
于 2019-08-10T15:57:04.140 回答
6

发布以添加有关PaulieG 答案的信息,因为 ateiob 要求我解释一些事情......


我可以说存在(或者至少在撰写本文时,当我查看当前版本的 Android 源代码时)代码中的错误/问题/优化ProgressBar忽略了将进度设置为某个值的尝试已经在。

  • 即如果progress = 45,并且您尝试将其设置为45,则代码将什么也不做,并且不会重绘progress

调用后ProgressBar.setProgressDrawable(),您的进度条将是空白的(因为您更改了可绘制部分)。

这意味着您需要设置进度并重新绘制它。但是,如果您只是将进度设置为保留值,它将无济于事。

您必须先将其设置为 0,然后再次设置为“旧”值,然后条形图将重绘。


所以总结一下:

  • 保留“旧”进度值
  • 更新可绘制/颜色(使栏空白)
  • 将进度重置为 0(否则下一行什么都不做)
  • 将进度重置为“旧”值(修复栏)
  • 无效

以下是我拥有的一种方法:

protected void onResume()
{
    super.onResume();
    progBar = (ProgressBar) findViewById(R.id.progress_base);

    int oldProgress = progBar.getProgress();

    // define new drawable/colour
    final float[] roundedCorners = new float[]
        { 5, 5, 5, 5, 5, 5, 5, 5 };
    ShapeDrawable shape = new ShapeDrawable(new RoundRectShape(
        roundedCorners, null, null));
    String MyColor = "#FF00FF";
    shape.getPaint().setColor(Color.parseColor(MyColor));
    ClipDrawable clip = new ClipDrawable(shape, Gravity.LEFT,
        ClipDrawable.HORIZONTAL);
    progBar.setProgressDrawable(clip);

    progBar.setBackgroundDrawable(getResources().getDrawable(
        android.R.drawable.progress_horizontal));

    // work around: setProgress() ignores a change to the same value
    progBar.setProgress(0);
    progBar.setProgress(oldProgress);

    progBar.invalidate();
}

至于 HappyEngineer 的解决方案,我认为这是一个类似的解决方法,手动设置“进度”偏移量。无论哪种情况,上面的代码都应该适合您。

于 2012-07-02T06:01:39.507 回答
6

水平进度条自定义材质样式:

改变背景颜色和水平进度条的进度。

<style name="MyProgressBar" parent="@style/Widget.AppCompat.ProgressBar.Horizontal">
    <item name="android:progressBackgroundTint">#69f0ae</item>
    <item name="android:progressTint">#b71c1c</item>
    <item name="android:minWidth">200dp</item>
</style>

通过设置样式属性将其应用于进度条,对于自定义材质样式和自定义进度条检查http://www.zoftino.com/android-progressbar-and-custom-progressbar-examples

于 2017-09-21T14:53:24.520 回答
6

使用android.support.v4.graphics.drawable.DrawableCompat

            Drawable progressDrawable = progressBar.getIndeterminateDrawable();
            if (progressDrawable  != null) {
                Drawable mutateDrawable = progressDrawable.mutate();
                DrawableCompat.setTint(mutateDrawable, primaryColor);
                progressBar.setProgressDrawable(mutateDrawable);
            }
于 2018-03-15T13:35:17.677 回答
4

对于水平样式 ProgressBar,我使用:

import android.widget.ProgressBar;
import android.graphics.drawable.GradientDrawable;
import android.graphics.drawable.ClipDrawable;
import android.view.Gravity;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;

public void setColours(ProgressBar progressBar,
                        int bgCol1, int bgCol2, 
                        int fg1Col1, int fg1Col2, int value1,
                        int fg2Col1, int fg2Col2, int value2)
  {
    //If solid colours are required for an element, then set
    //that elements Col1 param s the same as its Col2 param
    //(eg fg1Col1 == fg1Col2).

    //fgGradDirection and/or bgGradDirection could be parameters
    //if you require other gradient directions eg LEFT_RIGHT.

    GradientDrawable.Orientation fgGradDirection
        = GradientDrawable.Orientation.TOP_BOTTOM;
    GradientDrawable.Orientation bgGradDirection
        = GradientDrawable.Orientation.TOP_BOTTOM;

    //Background
    GradientDrawable bgGradDrawable = new GradientDrawable(
            bgGradDirection, new int[]{bgCol1, bgCol2});
    bgGradDrawable.setShape(GradientDrawable.RECTANGLE);
    bgGradDrawable.setCornerRadius(5);
    ClipDrawable bgclip = new ClipDrawable(
            bgGradDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);     
    bgclip.setLevel(10000);

    //SecondaryProgress
    GradientDrawable fg2GradDrawable = new GradientDrawable(
            fgGradDirection, new int[]{fg2Col1, fg2Col2});
    fg2GradDrawable.setShape(GradientDrawable.RECTANGLE);
    fg2GradDrawable.setCornerRadius(5);
    ClipDrawable fg2clip = new ClipDrawable(
            fg2GradDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);        

    //Progress
    GradientDrawable fg1GradDrawable = new GradientDrawable(
            fgGradDirection, new int[]{fg1Col1, fg1Col2});
    fg1GradDrawable.setShape(GradientDrawable.RECTANGLE);
    fg1GradDrawable.setCornerRadius(5);
    ClipDrawable fg1clip = new ClipDrawable(
            fg1GradDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);        

    //Setup LayerDrawable and assign to progressBar
    Drawable[] progressDrawables = {bgclip, fg2clip, fg1clip};
    LayerDrawable progressLayerDrawable = new LayerDrawable(progressDrawables);     
    progressLayerDrawable.setId(0, android.R.id.background);
    progressLayerDrawable.setId(1, android.R.id.secondaryProgress);
    progressLayerDrawable.setId(2, android.R.id.progress);

    //Copy the existing ProgressDrawable bounds to the new one.
    Rect bounds = progressBar.getProgressDrawable().getBounds();
    progressBar.setProgressDrawable(progressLayerDrawable);     
    progressBar.getProgressDrawable().setBounds(bounds);

    // setProgress() ignores a change to the same value, so:
    if (value1 == 0)
        progressBar.setProgress(1);
    else
        progressBar.setProgress(0);
    progressBar.setProgress(value1);

    // setSecondaryProgress() ignores a change to the same value, so:
    if (value2 == 0)
        progressBar.setSecondaryProgress(1);
    else
        progressBar.setSecondaryProgress(0);
    progressBar.setSecondaryProgress(value2);

    //now force a redraw
    progressBar.invalidate();
  }

一个示例调用是:

  setColours(myProgressBar, 
          0xff303030,   //bgCol1  grey 
          0xff909090,   //bgCol2  lighter grey 
          0xff0000FF,   //fg1Col1 blue 
          0xffFFFFFF,   //fg1Col2 white
          50,           //value1
          0xffFF0000,   //fg2Col1 red 
          0xffFFFFFF,   //fg2Col2 white
          75);          //value2

如果您不需要“二次进度”,只需将 value2 设置为 value1。

于 2012-10-21T11:09:59.147 回答
4

将此自定义样式应用于进度条。

<style name="customProgress" parent="@android:style/Widget.ProgressBar.Small">
        <item name="android:indeterminateDrawable">@drawable/progress</item>
        <item name="android:duration">40</item>
        <item name="android:animationCache">true</item>
        <item name="android:drawingCacheQuality">low</item>
        <item name="android:persistentDrawingCache">animation</item>
    </style>

@drawable/progress.xml -

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

使用这种类型的图像作为进度条。 在此处输入图像描述

为了获得更好的结果,您可以使用多个进度图像。并且请不要犹豫使用图片,因为 Android 平台本身使用图片作为进度条。代码是从 sdk 中提取的 :)

于 2015-09-26T13:55:45.557 回答
4

这是以编程方式更改 ProgressBar 颜色的代码。

ProgressBar progressBar = (ProgressBar) findViewById(R.id.pb_listProgressBar);
int colorCodeDark = Color.parseColor("#F44336");
progressBar.setIndeterminateTintList(ColorStateList.valueOf(colorCodeDark));
于 2017-07-25T06:13:12.503 回答
4
ProgressBar freeRamPb = findViewById(R.id.free_ram_progress_bar);

freeRamPb.getProgressDrawable().setColorFilter(
Color.BLUE, android.graphics.PorterDuff.Mode.SRC_IN);
于 2018-05-15T05:02:04.680 回答
3
ProgressBar bar;

private Handler progressBarHandler = new Handler();

GradientDrawable progressGradientDrawable = new GradientDrawable(
        GradientDrawable.Orientation.LEFT_RIGHT, new int[]{
                0xff1e90ff,0xff006ab6,0xff367ba8});
ClipDrawable progressClipDrawable = new ClipDrawable(
        progressGradientDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);
Drawable[] progressDrawables = {
        new ColorDrawable(0xffffffff),
        progressClipDrawable, progressClipDrawable};
LayerDrawable progressLayerDrawable = new LayerDrawable(progressDrawables);


int status = 0;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // TODO Auto-generated method stub
    setContentView(R.layout.startup);

    bar = (ProgressBar) findViewById(R.id.start_page_progressBar);
    bar.setProgress(0);
    bar.setMax(100);

    progressLayerDrawable.setId(0, android.R.id.background);
    progressLayerDrawable.setId(1, android.R.id.secondaryProgress);
    progressLayerDrawable.setId(2, android.R.id.progress);

    bar.setProgressDrawable(progressLayerDrawable);
}

这帮助我通过代码为进度条设置自定义颜色。希望能帮助到你

于 2012-05-07T06:43:38.607 回答
3

如果您正在处理多样式应用程序,那么使用 attr 非常简单:

试试这种方式:

在属性 attrs.xml 下面声明

 <attr name="circularProgressTheme" format="reference"></attr>

在styles.xml中粘贴下面的代码

 <style name="ProgressThemeWhite" parent="ThemeOverlay.AppCompat.Light">
        <item name="colorAccent">#FF0000</item>
    </style>

    <style name="circularProgressThemeWhite">
        <item name="android:theme">@style/ProgressThemeWhite</item>
    </style>


  <style name="AppTheme" parent="Theme.AppCompat.NoActionBar">

   <item name="circularProgressTheme">@style/circularProgressThemeWhite</item>

 </style>

使用如下进度条

  <ProgressBar
        style="?attr/circularProgressTheme"
        android:id="@+id/commonProgress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:visibility="visible"/>
于 2017-06-24T07:35:21.087 回答
3

默认( 不确定

添加

android:indeterminateTint="@color/white"

确定

progressBar.getProgressDrawable().setColorFilter(
    Color.RED, android.graphics.PorterDuff.Mode.SRC_IN);
于 2021-10-07T09:19:34.100 回答
2

Horizontal ProgressBar使用rectangle shape可绘制的背景,ClipDrawablerectangle shape进度(主要和次要)构造。着色将颜色更改为某种色调。如果您想分别为所有三种颜色指定目标颜色,则可以使用ProgressBar.setProgressDrawable()以下方法:

    LayerDrawable progressBarDrawable = new LayerDrawable(
        new Drawable[]{
                new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM,
                            new int[]{Color.parseColor("#ff0000ff"),Color.parseColor("#ff0000ff")}),

                new ClipDrawable(
                            new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM,
                                    new int[]{Color.parseColor("#ff00ff00"),Color.parseColor("#ff00ff00")}),
                            Gravity.START,
                            ClipDrawable.HORIZONTAL),

                new ClipDrawable(
                        new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM,
                                new int[]{Color.parseColor("#ffff0000"),Color.parseColor("#ffff0000")}),
                        Gravity.START,
                        ClipDrawable.HORIZONTAL)
            });

    progressBarDrawable.setId(0,android.R.id.background);
    progressBarDrawable.setId(1,android.R.id.secondaryProgress);
    progressBarDrawable.setId(2,android.R.id.progress);
    ((ProgressBar)findViewById(R.id.progressBar)).setProgressDrawable(progressBarDrawable);

请注意,可绘制层的顺序在初始化时很重要LayerDrawable。第一个可绘制对象应该用于背景。根据我的实验,切换 ID 不起作用。如果您将填充设置为,progressbar那么这种方法将不起作用。如果您需要填充,则可以为进度条使用容器,例如LinearLayout.

于 2017-05-12T19:02:36.667 回答
0

由于方法public void setColorFilter(@ColorInt int color, @NonNull PorterDuff.Mode mode)已被弃用,我使用这种形式:

progressBar.indeterminateDrawable.colorFilter =
            PorterDuffColorFilter(ContextCompat.getColor(this, R.color.black), PorterDuff.Mode.SRC_IN)
于 2020-07-13T12:15:38.077 回答
0

似乎可以在较新版本的材料设计库中将不确定的线性进度指示器设为多色。

制作进度条的动画类型contiguous可以实现这一点。

  • 在具有此属性的布局中:
    app:indeterminateAnimationType
    
  • 或以编程方式使用此方法:
    setIndeterminateAnimationType()
    

请参阅此处了解更多信息。

于 2021-01-08T09:05:35.840 回答
0

我知道我迟到了,但如果您只想更改进度条的颜色,这是最简单的解决方案,在您的主题中,只需添加,

@color/你的颜色

colorSecondary 将在整个过程中更改您的进度颜色。

于 2021-07-09T09:49:57.100 回答