Hi I am facing a similar problem what i am doing in my application is
I am trying to move the disc from one place to another place

switch (e.getAction())
        {
        case MotionEvent.ACTION_DOWN:
            x=e.getX();
            y=e.getY();
            requestRender();
            break;
        case MotionEvent.ACTION_UP:
                a=e.getX();
                b=e.getY();
                requestRender();
                break;
        }


but the problem is the value of x y & a.b are equall so trhe disc is
not moving at all it is blinking and the disc is coming in the same
place please help me

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to