stay inZoomMode until last finger is liftetd
This commit is contained in:
parent
1c6f277e79
commit
08d57baf42
1 changed files with 9 additions and 7 deletions
|
@ -88,7 +88,9 @@ public class MultiTouchSupport {
|
|||
if(pointCount < 2){
|
||||
if(inZoomMode){
|
||||
listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
|
||||
inZoomMode = false;
|
||||
if(pointCount == 0){
|
||||
inZoomMode = false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -111,12 +113,12 @@ public class MultiTouchSupport {
|
|||
angleStarted = angle;
|
||||
inZoomMode = true;
|
||||
return true;
|
||||
} else if(actionCode == ACTION_POINTER_UP){
|
||||
if(inZoomMode){
|
||||
listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
|
||||
inZoomMode = false;
|
||||
}
|
||||
return true;
|
||||
//} else if(actionCode == ACTION_POINTER_UP){
|
||||
// if(inZoomMode){
|
||||
// listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
|
||||
// inZoomMode = false;
|
||||
// }
|
||||
// return true;
|
||||
} else if(inZoomMode && actionCode == MotionEvent.ACTION_MOVE){
|
||||
if(angleDefined) {
|
||||
angleRelative = MapUtils.unifyRotationTo360(angle - angleStarted);
|
||||
|
|
Loading…
Reference in a new issue