gpt4 book ai didi

Android IME,在 EditText 中设置光标位置

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:34:50 24 4
gpt4 key购买 nike

我正在使用软键盘,我需要在 IME 编辑文本中设置光标位置。

enter image description here

如上图所示,我创建了软键盘,我们可以看到在编辑文本和当前光标位置(用蓝色指示器显示)中输入了一些文本。

我需要将光标位置设置在当前行的末尾(在我们的例子中是在图像中首先以红色显示的行的末尾)

我尝试过 InputConnection 提供的不同功能,我尝试过,

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

还有一件事,我还需要计算编辑文本中的行数(在我们的例子中是两行)。

最佳答案

其他一些答案似乎过于复杂或不完整。这是对 future 访问者的一般回答。

在 Activity 中

如果您有对 EditText 的引用,那就很容易了。

设置光标位置

editText.setSelection(index);

设置选定范围

editText.setSelection(startIndex, endIndex);

在 IME(键盘)中

在 IME 中有点困难,因为您不能直接访问 EditText。但是,您可以使用 InputConnection 来设置光标位置和选择。

以下答案从您的 InputMethodService 中获取这样的输入连接子类:

InputConnection inputConnection = getCurrentInputConnection();

设置光标位置

inputConnection.setSelection(index, index);

设置选定范围

inputConnection.setSelection(startIndex, endIndex);

将光标移动到开头

inputConnection.setSelection(0, 0);

将光标移动到末尾

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

此方法不能保证有效,因为如果文本很长,提取的文本将不会是 EditText 中的完整文本。但是,对于大多数情况来说,这很好。另一种选择是使用以下组合

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

其中 numberOfChars 是一个大数字。

获取当前光标索引(或选择)

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

extractedText 没有返回 EditText 的完整文本的情况下,startOffset 会告诉您它是从哪个点提取的从。然后,您可以通过将 startOffset 添加到提取文本的选择开始或结束来获取实际的光标索引。

相对于当前位置移动光标

一旦知道了光标的当前位置,就可以很容易地四处移动它。下面是一个将光标移动到前一个单词开头的示例。

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);

查看其他 BreakIterator 选项 here .

您还可以通过发送方向键向下向上事件来向左、向右、向上和向下移动。

向左移动

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

向右移动

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

上移

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

下移

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

关于Android IME,在 EditText 中设置光标位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20239524/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com