I'm developing an Android app with a big form. The Layout is contained by a ScrollView, so I can scroll up and down through the form.

The problem is that I have to capture some draws (a signature) in this form. I've created a view for it, and it has an onTouchEvent:

public boolean onTouchEvent(MotionEvent event)
{
    //Here should be some kind of event.preventDefault();
    float eventX = event.getX();
    float eventY = event.getY();
    [...]
}

It captures the event and draw horizontally, but vertically it draws just 1cm or so and starts to scroll the form.

I've been looking through MotionEvent's methods and trying some things without success, and I'm really lost right now.

Thanks in advance!

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

I put here the solution to mark it as solved:

Ok... I've solved it.

public boolean onTouchEvent(MotionEvent event)
{
    getParent().requestDisallowInterceptTouchEvent(true);
    float eventX = event.getX();
    float eventY = event.getY();
    [...]
}

So it's solved. Thanks anyway!

link|improve this answer
Don't forget to Accept your answer. Since it's your own answer to the question, I believe that you have to wait 0 - 2 days. – Rob W Feb 9 at 10:59
Yep, I have to wait one day, but I wanted to mark it as solved and the main post can't be marked hehe. Thanks Rob ;) – serginator Feb 9 at 11:01
feedback

Your Answer

 
or
required, but never shown

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