Now I am working on a Android application. I created a custom keyboard with functionalities. I am using a edittext for displaying the entered texts. Edit text may have n number of lines.Now my problem is I have a up button in my keyboard.So if I click the up button then i have to go the previous lines same position.But I couldn't able to find out the edittext line number and curser position of the currentline. Please help me friends
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
for current Cursor Line try this:
and for Cursor position use
|
|||
|
|
|
If you are not using some fixed width font as courrier, it is not easy. There is no function that returns the letter position for source text and needed width in pixels. You will have to write it. you should measure the text, as here:
I would use for the search of the correct position some hashing algorithm |
|||
|
|