In the blackberry JDE 4.7,

under the TouchEvent, there are two similar sounding methods:

  • getX(int touch) "return mapped x coordinate"
  • getGlobalX(int touch) "return global x coordindate"

Does anyone know what the difference is between the two? The javadocs talk about mapped vs global but I'm not sure what that means.

Any help poindexter?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

getX is the position in your field (button, listfield) and getGlobalX the x-position in your screen.

link|improve this answer
thanks. i appreciate the clean, simple answer. – yamspog Aug 16 '09 at 16:33
feedback

Like rAyt mentions.

The mapped coordinate is with respect to your current view or field. The global coordinate is with respect to your screen.

This link may help you: http://supportforums.blackberry.com/rim/board/message?board.id=java%5Fdev&thread.id=36636

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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