Hi I want to create aplication which loads large image, and simple gesture I can move across it. I have to image printed out but I can not implement onTouch so it remains stationary. Any help apreseated. Thanks

My code for drawing out the picture:

@Override protected void onDraw(Canvas canvas) {
          super.onDraw(canvas);
                   Paint paint = new Paint();
            paint.setStyle(Paint.Style.FILL);

            // make the entire canvas white
            paint.setColor(Color.WHITE);
            canvas.drawPaint(paint);
paint.setStrokeWidth(1);
            paint.setPathEffect(null);
            paint.setColor(Color.GRAY);
            paint.setAntiAlias(true);


            for (int i=1; i < 100; i++){
                canvas.drawLine(0, i*1 , 600, i*20, paint);
                canvas.drawLine(i*1 ,0, i*20, 600, paint);      
            }
}
link|improve this question

What have you got so far? Show us some code. – wheaties Feb 27 '11 at 20:33
feedback

2 Answers

up vote 1 down vote accepted

Within your view, you need to create the "OnTouchListener" which should look something like this:

myView.setOnTouchListener(new View.OnTouchListnener(){
    @Override
    public boolean onTouch(View v, MotionEvent e){
        switch(e.getAction()){
        case MotionEvent.ACTION_DOWN:
        //and code will go here for putting the finger on the screen

I would have a look at MotionEvent and looking at the various levels. You'll want to pay attention to how it can pack several bits of movement information into one MotionEvent.

link|improve this answer
I implement this metod this.setOnTouchListener(new View.OnTouchListener(){ public boolean onTouch(View v, MotionEvent e){ switch(e.getAction()){ case MotionEvent.ACTION_DOWN: x++; break; case MotionEvent.ACTION_MOVE: // touch drag with the ball // move the balls the same as the finger x = x-25; y = y-25; break; } return true; }//but for this bracet it trows me an error why } – suter Feb 27 '11 at 20:59
@suter perhaps your "x" and "y" are getting outside the bounds of the screen? – wheaties Feb 27 '11 at 21:03
feedback

As you're already writing a custom view, instead of setting a listener, you might want to incorporate a GestureDetector and listener inside your view, and above all avoid the switch(e.getAction()) thing, because OnGestureListener is on a higher level and will provide you with event already detected as a gesture (scroll, fling, long press...).

See an example here.

link|improve this answer
I like that. Perhaps this is much better suited to what he's trying to accomplish. – wheaties Feb 27 '11 at 21:02
feedback

Your Answer

 
or
required, but never shown

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