i have a view in linear layout. the app is music notation which is a series of musical bars which line wrap so they always less than width of screen (no horizontal scrolling). there is a vertical scrollbar when the music score gets too big for the view. so far so good. i can scroll up and down fine.
now i'm implementing pinch zoom, i set up an onScale in a ScaleGestureDetector, save the scale factor, invalidate and in onDraw i use the scale factor like this canvas.scale(mScaleFactor, mScaleFactor);
it scales the view ok except its not doing exactly what i want. i want the drawing area of the canvas to scale as it does but the scrollbar to stay in place, but zooming sends it off to the side, out of view.
any idea how to scale the view but not the scrollbar?
BTW, i can recalculate where to line wrap my music bars by applying the scalefactor to the width, its really just a problem with the scrollbar display.
can anyone help? thanks