仅在Android中通过CODE更改进度条颜色

时间:2012-06-08 15:42:05

标签: android colors progress-bar

我有一个使用ProgressBar类的progressBar。

这样做:

progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);

我需要使用输入值来改变那个的颜色:

int color = "red in RGB value".progressBar.setColor(color)

或类似的......

我无法使用 XML布局,因为进度条可以为用户自定义。

14 个答案:

答案 0 :(得分:45)

这将有助于完成编码所需的大量工作:)

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

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

答案 1 :(得分:27)

如果您需要以不同颜色为背景和进度条着色。

<强> progress_drawable.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape android:shape="rectangle" >
            <solid android:color="@color/white" />
        </shape>
    </item>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <solid android:color="@color/green" />
            </shape>
        </clip>
    </item>
</layer-list>

可以通过编程方式分解其图层列表项,并将它们分别着色:

LayerDrawable progressBarDrawable = (LayerDrawable) progressBar.getProgressDrawable();
Drawable backgroundDrawable = progressBarDrawable.getDrawable(0);
Drawable progressDrawable = progressBarDrawable.getDrawable(1);

backgroundDrawable.setColorFilter(ContextCompat.getColor(this.getContext(), R.color.white), PorterDuff.Mode.SRC_IN);
progressDrawable.setColorFilter(ContextCompat.getColor(this.getContext(), R.color.red), PorterDuff.Mode.SRC_IN);

答案 2 :(得分:19)

由于我在这里找到了一个主题的帮助但却记不起链接,我发布了完整的解决方案,这对我的需求非常有用:

    // Draw a simple progressBar from xml
    progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);

    // Convert the color (Decimal value) to HEX value: (e.g: #4b96a0)
    String color = colorDecToHex(75, 150, 160);

    // Define a shape with rounded corners
    final float[] roundedCorners = new float[] { 5, 5, 5, 5, 5, 5, 5, 5 };
    ShapeDrawable pgDrawable = new ShapeDrawable(new RoundRectShape(roundedCorners,     null, null));

    // Sets the progressBar color
    pgDrawable.getPaint().setColor(Color.parseColor(color));

    // Adds the drawable to your progressBar
    ClipDrawable progress = new ClipDrawable(pgDrawable, Gravity.LEFT, ClipDrawable.HORIZONTAL);
    progressBar.setProgressDrawable(progress);

    // Sets a background to have the 3D effect
    progressBar.setBackgroundDrawable(Utils.getActivity().getResources()
            .getDrawable(android.R.drawable.progress_horizontal));

    // Adds your progressBar to your layout
    contentLayout.addView(progressBar);

以下是将DECIMAL颜色值转换为HEXADECIMAL的代码:

public static String colorDecToHex(int p_red, int p_green, int p_blue)
{
    String red = Integer.toHexString(p_red);
    String green = Integer.toHexString(p_green);
    String blue = Integer.toHexString(p_blue);

    if (red.length() == 1)
    {
        red = "0" + red;
    }
    if (green.length() == 1)
    {
        green = "0" + green;
    }
    if (blue.length() == 1)
    {
        blue = "0" + blue;
    }

    String colorHex = "#" + red + green + blue;
    return colorHex;
}

我认为最后一种方法不是很干净但效果很好。

希望这很有帮助,在这个进度条上浪费了太多时间。

答案 3 :(得分:16)

<强>更新

在较新版本的Android(21件作品)中,您只需使用setProgressTintList即可以编程方式更改进度条的颜色。

要将其设置为红色,请使用:

//bar is a ProgressBar
bar.setProgressTintList(ColorStateList.valueOf(Color.RED));

答案 4 :(得分:13)

可以通过在进度条drawable上设置颜色过滤器来着色进度条:

Drawable drawable = progressBar.getProgressDrawable();
drawable.setColorFilter(new LightingColorFilter(0xFF000000, customColorInt));

答案 5 :(得分:7)

这适用于AppCompat: DrawableCompat.setTint(progressBar.getProgressDrawable(),tintColor);

答案 6 :(得分:3)

我通过 drawable xml 中提供了默认颜色

我已经以编程方式更改了它。

<强> activity_splasg.xml

<ProgressBar
       android:id="@+id/splashProgressBar"
       android:progressDrawable="@drawable/splash_progress_drawable"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:max="100"
       android:progress="50"
       style="?android:attr/progressBarStyleHorizontal"
       android:layout_alignParentBottom="true" />

<强> splash_progress_drawable.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <solid
                android:color="@android:color/transparent" />
        </shape>
    </item>

    <item
        android:id="@android:id/progress">
        <clip>
            <shape>
                <solid
                    android:color="#e5c771" />
            </shape>
        </clip>
    </item>

</layer-list>

现在如何以编程方式更改 ProgressDrawable颜色

ProgressBar splashProgressBar = (ProgressBar)findViewById(R.id.splashProgressBar);

Drawable bgDrawable = splashProgressBar.getProgressDrawable();
bgDrawable.setColorFilter(Color.BLUE, android.graphics.PorterDuff.Mode.MULTIPLY);
splashProgressBar.setProgressDrawable(bgDrawable);

希望这会对你有所帮助。

答案 7 :(得分:3)

progressbar.setIndeterminateTintList(ColorStateList.valueOf(Color.RED));

它仅适用于API 21

答案 8 :(得分:3)

如果你想以编程方式更改进度条的颜色,那么你复制过去这段代码就可以100%

 mainProgressBar.getIndeterminateDrawable().setColorFilter(Color.GREEN, PorterDuff.Mode.MULTIPLY);   

答案 9 :(得分:3)

科特林 2021:

pb.indeterminateTintList = ColorStateList.valueOf(Color.WHITE)

您也可以使用 getColor() 传递资源

如果不是不确定的,你可能需要这两个:

setSecondaryProgressTintList

setProgressTintList

答案 10 :(得分:1)

这篇文章正是您要找的:How to change progress bar's progress color in Android

如果您希望用户选择自己的颜色,只需为每种颜色制作多个可绘制的XML文件,然后根据用户的选择选择它们。

答案 11 :(得分:1)

Layout = activity_main.xml:

<ProgressBar
    android:id="@+id/circle_progress_bar_middle"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:max="100"
    android:rotation="-90"
    android:indeterminate="false"
    android:progressDrawable="@drawable/my_drawable_settings2" />

在Java活动/片段中:

ProgressBar myProgressBar = (ProgressBar) view.findViewById(R.id.circle_progress_bar_middle);
myProgressBar.setProgressDrawable(getResources().getDrawable(R.my_drawable_settings1));

drawable / mipmap文件夹中的my_drawable_settings1.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:id="@android:id/progress">
        <shape
            android:innerRadius="55dp"
            android:shape="ring"
            android:thickness="9dp"
            android:useLevel="true">

            <gradient
                android:startColor="#3594d1"
                android:endColor="@color/white"
                android:type="sweep" />
        </shape>
    </item>
</layer-list>

my_drawable_settings1和my_drawable_settings2.xml的颜色不同。

答案 12 :(得分:0)

setColorFilter(带有2个参数)已被弃用,而另一个指向使用LightingColorFilter的答案对我都不起作用

val progressBar = ProgressBar(context, null, android.R.attr.progressBarStyle).apply {

    val colorFilter = PorterDuffColorFilter(
        ContextCompat.getColor(context, R.color.yourColor),
        PorterDuff.Mode.MULTIPLY
    )

    indeterminateDrawable.colorFilter = colorFilter
}

这将以编程方式为您提供带有颜色的圆形进度条

答案 13 :(得分:0)

试试这个:

progress_wheel.getIndeterminateDrawable().setColorFilter(Color.parseColor(getPreferences().getString(Constant.SECOND_COLOR, Constant.SECONDARY_COLOR)), android.graphics.PorterDuff.Mode.MULTIPLY);