2

我在 Horizo​​ntalScrollView 中有一个 SeekBar。当移动 SeekBar 刻度时,有时它会滚动 Horizo​​ntalScrollView。

与 Horizo​​ntalScrollView 一起使用时 SeekBar 的任何替代品???

谢谢!

4

1 回答 1

5

你可以像这样在 seekbar 的触摸事件上设置metode。

SEEKBAR.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View arg0, MotionEvent arg1) {

                if(arg1.getAction() == MotionEvent.ACTION_DOWN || arg1.getAction() == MotionEvent.ACTION_MOVE)
                {
                HLISTVIEW.requestDisallowInterceptTouchEvent(true);

                }
                return false;
            }
        });
于 2012-08-06T09:25:35.647 回答