Find exact coordinates of a single Character inside a TextView

独自空忆成欢 提交于 2020-01-12 14:23:29

问题


Currently I'm using paintObject.measureText(textCopy.substring(0,i)) while iterating through a copy of the TextView's text. For example, measureText("abc".substring(0,1)) will give me the relative x coordinates of 'b'. The y coordinate I get from layout.getLineTop(). This is working but not accurate for x coordinates for non-monospaced fonts. I can calibrate a little, but on each device it works differently.

The best solution I can think of is to overwrite the class that is responsible for drawing the TextView on the screen and, hopefully, get the coordinates of each character drawn to screen.

Does anyone know what class I need to overwrite to accomplish this? Or maybe some other creative solution?


回答1:


Well it seems sort of a bug of Paint.measureText() or other deeper class. But I have FINALLY found a way around it:

layout.getPrimaryHorizontal(int offset)

This is very easy. You just iterate through the layout using the length of the text it uses.

It will return the the x of the Character REGARDLESS of line position. So lines I'm still getting from the layout.getLineTop(). By the way, if you are using the layout.getLineTop(), note that there is some strange behaviour, possibly a bug. I have submitted a bug report here.




回答2:


Here is the full code for how to get the x and y coordinates of a specific character. offset is the index of the desired character in the textView's text. These coordinates are relative to the parent container

Layout layout = textView.getLayout();
if (layout == null) { // Layout may be null right after change to the text view
    // Do nothing
}

int lineOfText = layout.getLineForOffset(offset);
int xCoordinate = (int) layout.getPrimaryHorizontal(offset);
int yCoordinate = layout.getLineTop(lineOfText);


来源:https://stackoverflow.com/questions/18257321/find-exact-coordinates-of-a-single-character-inside-a-textview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!