I'm trying to have zoom in/out control over a custom view. I'm laying them using frame layout:
<FrameLayout ...>
<com.example.overlay.OverlayView android:id="@+id/myview" ... />
<ZoomControls android:id="@+id/zoom" .../>
</FrameLayout>
I'm obviously doing something wrong, as I get the following result when button is clicked: https://picasaweb.google.com/lh/photo/sDpVOkFw9qdyOlKTmBeSdQ?feat=directlink
Button's background is screwed up (looks like blue circle portion is copied from 'myview') when button is clicked. The bad redraw always shows up on the recently clicked button, i.e. when I click '-' it gets bad and '+' gets OK at the same time.
I get the same problem when I change ZoomControls to Button.
In the main activity, I have the following code, e.g. when zoom in is clicked:
public void onClick(View v) {
// ov is OverlayView for R.id.myview
ov.scaleUp();
ov.invalidate();
}
And here's the code for my custom OverlayView:
package com.example.overlay;
...
public class OverlayView extends View {
public OverlayView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public OverlayView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public OverlayView(Context context) {
super(context);
}
float scale = 1;
public void scaleDown() {
if (scale > 0.1f) {
scale = scale * 0.9f;
}
}
public void scaleUp() {
if (scale < 10f) {
scale = scale / 0.9f;
}
}
@Override
protected void onDraw(Canvas canvas) {
Rect cr = canvas.getClipBounds();
float cx = (cr.right + cr.left) / 2.0f;
float cy = (cr.top + cr.bottom) / 2.0f;
Paint p = new Paint();
p.setAntiAlias(true);
p.setColor(Color.BLUE);
p.setStyle(Style.FILL);
canvas.drawCircle(cx, cy, 100*scale, p);
}
}