根据搜索条值更改颜色

时间:2014-04-13 13:28:02

标签: android colors seekbar

我正在尝试根据搜索栏的值更改颜色。我希望颜色能够在很宽的范围内出现。

这是我尝试过的,但它没有给我我想要的颜色:

seekBarColor.setOnSeekBarChangeListener( new OnSeekBarChangeListener() {
        int progress = 0;
          @Override
          public void onProgressChanged(SeekBar seekBar, int progresValue, boolean fromUser) {
            progress = progresValue;
            int lower = Color.argb(0xFF,progress*0x10000, progress*0x100, progress)+0xff000000;
            color.setBackgroundColor(lower);
          }

          @Override
          public void onStartTrackingTouch(SeekBar seekBar) {

          }

          @Override
          public void onStopTrackingTouch(SeekBar seekBar) {
              db.updateColor("");
          }
    });

有什么想法吗?

2 个答案:

答案 0 :(得分:9)

如果您只需要明亮饱和的颜色,请使用Color.HSVToColor()而不是直接设置R,G和B组件:

float[] hsvColor = {0, 1, 1};
// generate only hue component in range [0, 360),
// leaving saturation and brightness maximum possible
hsvColor[0] = 360f * progress / maxProgress;
view.setBackgroundColor(Color.HSVToColor(hsvColor));

此代码将从红色开始设置颜色,然后当progress0更改为maxProgress时,将颜色平滑变为橙色,黄色,绿色,蓝色和洋红色。 p>

答案 1 :(得分:2)

您必须将0-255值传递给Color.argb(int,int,int,int)方法。

这可能有用吗?

Color.argb(0xFF, progress, progress, progress) //will return some gray color based on progress. 

您可能必须根据最小值和最大值来缩放进度值。 例如,如果您有进度0-100,则应使用progress * 255 / 100

计算颜色值