I would like to implement drag-n-drop feature for Android 2.2. I override onTouchListener for each my control. But all my controls are inside ScrollView. When all my controls ar
Have a look at the onInterceptTouchEvent() method. You'll have to sub-class ScrollView and override and tweak this method.
Use mScrollView.requestDisallowInterceptTouchEvent(true);
to avoid ScrollView to handle touchEvents. Also as Ridcully pointed out handle the touch event in onInterceptTouchEvent()
.