无法以编程方式更新垂直搜索栏(无需触摸)

时间:2016-05-10 19:17:41

标签: android android-seekbar android-vertical-seekbar

很长一段时间以来,我一直坚持这个问题。我离开了它然后回到它,但到目前为止,我还没有找到一个有效的解决方案。问题很简单,我有一个垂直搜索栏,我想以编程方式更新它而不触及它,但它不会发生。这是我的垂直搜索栏代码

public class VerticalSeekBar extends SeekBar {

    public VerticalSeekBar(Context context) {
        super(context);
    }

    public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public VerticalSeekBar(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(h, w, oldh, oldw);
    }

    @Override
    protected synchronized void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(heightMeasureSpec, widthMeasureSpec);
        setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
    }

    protected void onDraw(Canvas c) {
        c.rotate(-90);
        c.translate(-getHeight(), 0);

        super.onDraw(c);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (!isEnabled()) {
            return false;
        }

        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
            case MotionEvent.ACTION_MOVE:
            case MotionEvent.ACTION_UP:
                setProgress(getMax() - (int) (getMax() * event.getY() / getHeight()));
                onSizeChanged(getWidth(), getHeight(), 0, 0);
                break;

            case MotionEvent.ACTION_CANCEL:
                break;
        }
        return true;
    }
}

这就是在xml

中声明搜索栏的方式
<com.gnr.kumar.varun.songapp.views.VerticalSeekBar
                android:id="@+id/slider_1"
                android:layout_width="wrap_content"
                android:layout_height="200dp"
                android:max="100"
                android:padding="10dp"
                android:progress="50"
                android:progressBackgroundTint="#9cf2ec"
                android:progressTint="#9cf2ec"
                android:thumb="@drawable/thumb" />

我尝试做像

这样的事情
SeekBar sliders[] = new SeekBar[NUM_OF_SLIDERS];

sliders[0] = (SeekBar) findViewById(R.id.slider_1);

sliders[0].setProgress(100);

但它只是将搜索栏位置改为略大于0,而实际上它应该处于最大值。无论我使用多少而不是100,它都是一样的。有人可以帮忙!!在此先感谢!!!

1 个答案:

答案 0 :(得分:0)

很长一段时间后,我终于能够解决我的问题了。我所要做的就是在Vertical Seekbar类中重写它。对this问题的已接受答案的评论对我有所帮助。

@Override public synchronized void setProgress(int progress){           
    super.setProgress(progress);
    onSizeChanged(getWidth(), getHeight(), 0, 0); 
}