如何根据进度改变搜索栏进度颜色?

发布于 2024-12-22 13:03:44 字数 649 浏览 1 评论 0原文

我想创建一个自定义搜索栏,当用户更改进度栏的进度时,其进度栏的颜色在红色和蓝色之间变化。

我已经尝试过,但它只改变背景颜色而不改变进度条颜色。

seekBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {

            public void onStopTrackingTouch(SeekBar seekBar) {
                // TODO Auto-generated method stub

            }

            public void onStartTrackingTouch(SeekBar seekBar) {
                // TODO Auto-generated method stub

            }

            public void onProgressChanged(SeekBar seekBar, int progress,
                    boolean fromUser) {


                seekBar.setBackgroundColor(Color.RED + progress);

            }
        });

I want to create a custom seekbar, whose progress bar's colour change between red and blue as the user changes the progress of the bar.

I have tried it but its only changing the background colour not the progress bar color.

seekBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() {

            public void onStopTrackingTouch(SeekBar seekBar) {
                // TODO Auto-generated method stub

            }

            public void onStartTrackingTouch(SeekBar seekBar) {
                // TODO Auto-generated method stub

            }

            public void onProgressChanged(SeekBar seekBar, int progress,
                    boolean fromUser) {


                seekBar.setBackgroundColor(Color.RED + progress);

            }
        });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

第几種人 2024-12-29 13:03:44

有很多方法可以做到这一点,我将告诉你简单的方法。
您可以像这样设置 ProgressBackground 的颜色:

seekBar.getProgressDrawable().setColorFilter("<Color you wish>", PorterDuff.Mode.MULTIPLY);

如果您的 api 级别为 21,则可以使用 getProgressBackgroundTintList 或 getProgressBackgroundTintMode()。

There are a lot of way to do this, I'll tell the simple way.
You can set the color of progressBackground like this:

seekBar.getProgressDrawable().setColorFilter("<Color you wish>", PorterDuff.Mode.MULTIPLY);

If your api level 21, you can use getProgressBackgroundTintList or getProgressBackgroundTintMode().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文