blackberry JDE 4.7 - TouchEvent 类 - getX 和 getGlobalX 之间的区别
在blackberry JDE 4.7中,
在TouchEvent下,有两个类似的发声方法:
- getX(int touch) “返回映射的x坐标”
- getGlobalX(int touch) “返回全局x坐标”
有谁知道这两者之间有什么区别? javadoc 讨论了映射与全局,但我不确定这意味着什么。
有什么帮助吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getX 是字段(按钮、列表字段)中的位置,getGlobalX 是屏幕中的 x 位置。
getX is the position in your field (button, listfield) and getGlobalX the x-position in your screen.
就像 rAyt 提到的那样。
映射的坐标是相对于您当前的视图或视野的。全局坐标是相对于您的屏幕的。
此链接可能会帮助您:
http://supportforums.blackberry.com/ rim/board/message?board.id=java_dev&thread.id=36636
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_dev&thread.id=36636