如何从程序中动态更改SeekBar的进度?

时间:2012-12-06 20:36:20

标签: android

我想从程序中动态更改SeekBar的进度颜色(不是SeekBar背景)。

使用seekbar.setProgressDrawable(Drawable drawable)只会更改SeekBar的背景。我见过的所有例子都使用XML中的drawable,它们在运行时是静态的。

颜色根据某些用户活动而变化,我需要将其设置为搜索栏的进度绘制。所以我在我的代码中编写自己的drawable。

在XML中,我们可以指定项目ID(例如背景,进度等)以获得可绘制的内容?如何在程序中实现这一目标?

1 个答案:

答案 0 :(得分:1)

您可以以编程方式创建自定义xml,然后创建进度条的setbackgrounddrawable,

myProgressBar.setProgressDrawable(R.drawable.progress_horizo​​ntal);

*的 progress_horizo​​ntal.xml *

<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="#ffffd300"
                        android:centerColor="#ffffb600"
                        android:centerY="0.75"
                        android:endColor="#ffffcb00"
                        android:angle="270"
                />
            </shape>
        </clip>
    </item>