Can we create multi touch in Android? I have multiple images and have to drag and drop that images together on my device. Is it possible? if it is possible then any ideas would help a lot.
Thanks
Can we create multi touch in Android? I have multiple images and have to drag and drop that images together on my device. Is it possible? if it is possible then any ideas would help a lot.
Thanks
You need to intercept touch events in your view. Implement an onTouchListener
and inside the function:
onTouch (View v, MotionEvent event){
int count=getPointerCount();
if(count >1){
// it means there are more than 1 point touched on the screen.
}
}
This is available only since API 5