I set the on touch listener for the scroll view and in the onTouch method i returend true.
That did the trick for me.
mScrollView.setOnTouchListener( new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event)
{
return true;
}
});
Best for all