I am writing an custom ViewGroup where I need to use only single finger touch and wanted to remove multitouch completely. I have checked with other option android:splitMotionEvents="false"
android:windowEnableSplitTouch="false"
but both are not working.
EDIT
@Override
public boolean onTouchEvent(MotionEvent ev) {
DragHelper.processTouchEvent(ev);
return true;
}
Any suggestion !