我在 HorizontalScrollView 中有一个 SeekBar。当移动 SeekBar 刻度时,有时它会滚动 HorizontalScrollView。
与 HorizontalScrollView 一起使用时 SeekBar 的任何替代品???
谢谢!
我在 HorizontalScrollView 中有一个 SeekBar。当移动 SeekBar 刻度时,有时它会滚动 HorizontalScrollView。
与 HorizontalScrollView 一起使用时 SeekBar 的任何替代品???
谢谢!
你可以像这样在 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;
}
});