Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android IME, set cursor position in EditText

I am working on soft keyboard where I need to set the cursor position in IME edit text.

enter image description here

As shown in above image, I had created soft keyboard, as we can see some text is entered in edit text and current cursor position(shown by blue indicator).

I need to set the cursor position at the end of the current line (in our case at the end of the line first shown by red color in image)

I have tried with different functions provided with InputConnection, I tried with,

CharSequence seq = conn.getTextBeforeCursor(1000, 0);     // will get as much characters as possible on the left of cursor

And one more thing, I also need to count to the number of lines in edit text (in our case it's two).

like image 650
Aniket Avatar asked Nov 27 '13 10:11

Aniket


People also ask

How do I change cursor position?

SetCursorPosition(Int32, Int32) Method is used to set the position of cursor. Basically, it specifies where the next write operation will begin in the console window.


2 Answers

Some of the other answers seem overly complicated or incomplete. This is a general answer for future visitors.

In an activity

If you have a reference to EditText then it is easy.

Set the cursor position

editText.setSelection(index);

Set a selected range

editText.setSelection(startIndex, endIndex);

In an IME (keyboard)

It's a little more difficult from within an IME because you don't have direct access to the EditText. However, you can use the InputConnection to set the cursor position and selection.

The following answers get the input connection like this from within your InputMethodService subclass:

InputConnection inputConnection = getCurrentInputConnection();

Set the cursor position

inputConnection.setSelection(index, index);

Set a selected range

inputConnection.setSelection(startIndex, endIndex);

Move the cursor to the start

inputConnection.setSelection(0, 0);

Move the cursor to the end

ExtractedText extractedText = inputConnection.getExtractedText(new ExtractedTextRequest(), 0);
if (extractedText == null || extractedText.text == null) return;
int index = extractedText.text.length();
inputConnection.setSelection(index, index);

This method isn't guaranteed to work because the extracted text will not be be the entire text from the EditText if the text is very long. However, for most situations it is fine. Another option would be to use a combination of the following

  • inputConnection.getTextBeforeCursor(numberOfChars, 0)
  • inputConnection.getSelectedText(0)
  • inputConnection.getTextAfterCursor(numberOfChars, 0)

where numberOfChars is a large number.

Get current cursor index (or selection)

ExtractedText extractedText = inputConnection.getExtractedText(new ExtractedTextRequest(), 0);
int startIndex = extractedText.startOffset + extractedText.selectionStart;
int endIndex = extractedText.startOffset +  extractedText.selectionEnd;

In the case that the extractedText does not return the full text of the EditText, the startOffset tells you from what point it was pulled from. Then you can get the actual cursor index by adding the startOffset to the extracted text's selection start or end.

Move the cursor relative to its current position

Once you know the current position of the cursor, it is easy to move it around. Here is an example that moves the cursor to the beginning of the previous word.

BreakIterator boundary = BreakIterator.getWordInstance();
boundary.setText(extractedText.text.toString());
int preceding = boundary.preceding(extractedText.selectionStart);
int newIndex = (preceding == BreakIterator.DONE) ? selectionStart : preceding;
inputConnection.setSelection(newIndex, newIndex);

See other BreakIterator options here.

You can also move left, right, up and down by sending d-pad down up events.

Move left

inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_LEFT));
inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_LEFT));

Move right

inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_RIGHT));
inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_RIGHT));

Move up

inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_UP));
inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_UP));

Move down

inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_DOWN));
inputConnection.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_DOWN));
like image 64
Suragch Avatar answered Oct 04 '22 05:10

Suragch


Hi friends thanks for appreciation. Before two days I got my solution but can't able to update my answer.

For that I used below code,

If we are using api version greater than 10,

sendDownUpKeyEvents(0x0000007b);

because this method is added in api 11.

If we are using api version less than 11,

if (getCurrentInputConnection() != null) {
                    CharSequence textAfter = getCurrentInputConnection().getTextAfterCursor(1024, 0);
                    if (!TextUtils.isEmpty(textAfter)) {
                        int newPosition = 1;
                        while (newPosition < textAfter.length()) {
                            char chatAt = textAfter.charAt(newPosition);
                            if (chatAt == '\n' || chatAt == '\r') {
                                break;
                            }
                            newPosition++;
                        }
                        if (newPosition > textAfter.length())
                            newPosition = textAfter.length();
                        try {
                            CharSequence textBefore = getCurrentInputConnection().getTextBeforeCursor(Integer.MAX_VALUE, 0);
                            if (!TextUtils.isEmpty(textBefore)) {
                                newPosition = newPosition + textBefore.length();
                            }
                            getCurrentInputConnection().setSelection(newPosition, newPosition);
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                    }
                }
like image 44
Aniket Avatar answered Oct 04 '22 06:10

Aniket