如何在 JTextArea 中查找光标位置
有人会帮我找到 JTextArea 中以像素为单位的光标位置吗? 我使用了txtArea.getCaretPosition()
。但这不是我所期望的位置。实际上我想要光标位置在像素的 x,y 坐标中。
Would someone help me in finding cursor position in a JTextArea in terms of pixel?
I have used txtArea.getCaretPosition()
. But this is not the position I expect. Actually i want the cursor position in x,y
coordinate of pixel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
TextUI 有方法
modelToView
这将为您提供插入符号的位置/大小:TextUI have method
modelToView
that'll give you position/size of the caret:请注意,其中一些答案返回相对于您从中获取插入符号位置的文本组件的位置。
如果您想获取插入符号在屏幕上的位置,我建议您使用以下方法:
Note that some of these answers return the location relative to the text component you're getting the caret position from.
If you want to get the caret's position on the screen, I suggest you use this method:
您可能必须使用 FontMetrics 类。
分析文本,找出文本的新行/换行。
然后使用
等等......
如果你真的想要,在这里发布你的解决方案会很酷。 :)
You may have to use the FontMetrics class.
Analyze the text, figure out the new lines / wrapping of the text.
then use
etc....
And if you really want, post your solution here to be cool. :)
就像下面一样
请注意该点可能为空
Just like below
Please be aware the point could be null
我在尝试了这里的其他帖子后做了这个。只要您的文本区域禁用了文本换行,它就可以完美工作。
I made this one after trying the other posts here. It works perfectly as long has your textarea has text wrapping disabled.
或者
例如;使用此矩形显示弹出窗口:
popupMenu.show(textPane, caretRect.x, caretRect.y);
or
for example; use this rect for showing popup:
popupMenu.show(textPane, caretRect.x, caretRect.y);
这是在插入符号位置显示 JPopup 的示例
Here is an example to display a JPopup at the caret position