Hi friends I am creating one app where i put two views. first is imageview and the other one is my customeview.

i am drawing image on my custom view. my custom view code is as follow

public class DrawView extends ImageView{
    @SuppressWarnings("unused")
    private static final String TAG = "DrawView";
    Painter painter = new Painter();
    PathStack pathStack;
    private DrawApplication drawApplication;

    public DrawView(Context context, AttributeSet attr) {
        super(context,attr);
        setFocusable(true);
        setFocusableInTouchMode(true);
        drawApplication=(DrawApplication)context.getApplicationContext();
        pathStack=drawApplication.getPainter().getPathStack();
        painter=drawApplication.getPainter();
        setScaleType(ScaleType.MATRIX);

    }

    @Override
    public void onDraw(Canvas canvas) {
        float scaleFactor=drawApplication.getScaleFactor();
        canvas.scale(scaleFactor, scaleFactor,(float)getWidth()/2,(float)getHeight()/2);
        List<DrawingPath> currentStack=pathStack.getCurrentStack();

        for (DrawingPath drawPath : currentStack) {
            drawPath.draw(canvas, painter);

        }

    }
}

many things clear from code like storing path on drawapplication etc.

now we have decided to provide zooming and panning to this view. and my drawing should also be zoomed accordingly along with imageview which in back.

also i should be able to draw correctly.

I tried canvas scaling but that is worst, because after scaling i am not able to draw to the touched point and also less drawing to the screen resulting in more drawing to the view.

drawing on widget is also very lengthy task results in performance slow down. plz provide any way.

and also i am using api level 10.

Edit1

Well friends. i got one idea. i have to draw path on different zoom level. so if we can calculate path ratio in different zoom level than it will solve my problem. plz provide help accordingly

Edit2

if we will be able to scale path then it can solve my problem

Edit3

i think if we draw it on bitmap than i can achieve my goal, but my problem is resizing bitmap and providing scrolling to bitmap on different zoom level

link|improve this question

69% accept rate
For panning, you can use View's framework for scrolling. If you also want smooth scrolling I've answered that here (if you don't, you can just return true in onDown() and leave out the mScroller/onFling() code). For the zoom, I'm sorry but I did that only with ImageView. – bigstones Apr 14 '11 at 14:14
feedback

3 Answers

try this and also this tutorial by sony blog.

thanks.

link|improve this answer
1  
this link will have downloadable code – Ganapathy Apr 12 '11 at 5:17
hi ganapathy this code is not going to solve my problem because i don't only have to zoom, but i also want to draw on canvas on different zoom level. i am edit and providing some hint, so that it will help you to solve – Sunil Pandey Apr 14 '11 at 4:54
The tutorials on the Sony blog are really a good way to understand how things work. – r1k0 Nov 11 '11 at 12:18
feedback

Similar questions on SO:

Can be done on Honeycomb (API lvl 11) but not properly before.

link|improve this answer
pinching is not my issue, but i don't want to create custom views. i want to provide zooming and panning to android standard view – Sunil Pandey Apr 7 '11 at 9:37
Whether you want to do it by pinching or by a click on a button, the answer is the same. You cannot do it on API < 11. – MarvinLabs Apr 7 '11 at 9:40
i just edited my question, could we get solution through this way – Sunil Pandey Apr 7 '11 at 13:33
hi have you reviewed my question – Sunil Pandey Apr 14 '11 at 6:24
feedback

I don't think a normal view can be zoomed. You could capture the touch events and scale the view widgets correspondingly.

link|improve this answer
can u provide me any sample code – Sunil Pandey Apr 7 '11 at 9:23
What I essentially meant, MarvinLabs has pointed to in detail... That's probably the only way to go. – rajath Apr 7 '11 at 9:45
i just edited my question, could we get solution through this way – Sunil Pandey Apr 7 '11 at 13:34
You will need to share some code, and be more specific. Suggest you take a simple shape and try it out. – rajath Apr 8 '11 at 11:51
hi have reviewed my question – Sunil Pandey Apr 14 '11 at 6:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.