Hi Dear,

i am trying to capture startx and endx position but
MotionEvent.ACTION_DOWN event doesn't fire at all.

please check what wrong in the code below:


@Override
                public boolean onTouchEvent(MotionEvent event) {


                        switch (event.getAction()) {
                    case MotionEvent.ACTION_DOWN: // doesn't fire
                       startX = (int)event.getX();
                       startY = (int)event.getY();
                       return true;
                        }
                        return true

                }
--~--~---------~--~----~------------~-------~--~----~
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