I have a custom view in android which is zoomable using a ScaleGestureDetector. The activity itself actually contains two custom views, the main one which is zoomable and a smaller second view to the left. The issue I'm having is that if whilst performing the pinch-to-zoom gesture, one of my fingers either goes onto the second view or goes off of the screen completely then it messes up the data being displayed.
I'm presuming a quick fix would be to somehow disable the scaleGestureDetector if one finger leaves the view but I don't know how to do this.
Has anybody had a similar problem?