有两个EditText,在加载页面时,在第一个EditText中设置了一个文本,所以现在光标将位于EditText的起始位置,我想在第二个EditText中设置光标的位置,其中不包含数据。如何做到这一点?


当前回答

将游标设置为行和列

您可以使用下面的代码获取EditText中与某一行和列对应的位置。然后可以使用editText。setSelection(getIndexFromPos(row, column))设置游标位置。 可以对该方法进行以下调用:

getIndexFromPos(x, y)到x行的y列 getIndexFromPos(x, -1)到x行的最后一列 getIndexFromPos(-1, y)到最后一行的y列 getIndexFromPos(-1, -1)到最后一行的最后一列

处理所有的行和列边界;输入大于该行长度的列将返回该行最后一列的位置。输入比EditText的行数大的行将转到最后一行。它应该是足够可靠的,因为它经过了大量的测试。

static final String LINE_SEPARATOR = System.getProperty("line.separator");

int getIndexFromPos(int line, int column) {
    int lineCount = getTrueLineCount();
    if (line < 0) line = getLayout().getLineForOffset(getSelectionStart());  // No line, take current line
    if (line >= lineCount) line = lineCount - 1;  // Line out of bounds, take last line

    String content = getText().toString() + LINE_SEPARATOR;
    int currentLine = 0;
    for (int i = 0; i < content.length(); i++) {
        if (currentLine == line) {
            int lineLength = content.substring(i, content.length()).indexOf(LINE_SEPARATOR);
            if (column < 0 || column > lineLength) return i + lineLength;  // No column or column out of bounds, take last column
            else return i + column;
        }
        if (String.valueOf(content.charAt(i)).equals(LINE_SEPARATOR)) currentLine++;
    }
    return -1;  // Should not happen
}

// Fast alternative to StringUtils.countMatches(getText().toString(), LINE_SEPARATOR) + 1
public int getTrueLineCount() {
    int count;
    String text = getText().toString();
    StringReader sr = new StringReader(text);
    LineNumberReader lnr = new LineNumberReader(sr);
    try {
        lnr.skip(Long.MAX_VALUE);
        count = lnr.getLineNumber() + 1;
    } catch (IOException e) {
        count = 0;  // Should not happen
    }
    sr.close();
    return count;
}

这个问题已经有了答案,但我认为可能有人想要这样做。

它的工作原理是遍历每个字符,每次找到行分隔符就增加行数。当行数等于所需的行时,它返回当前索引+列,如果列越界,则返回行结束索引。你也可以重用getTrueLineCount()方法,它返回忽略文本换行的行数,不像TextView.getLineCount()。

其他回答

Edittext中的setSelection(int index)方法应该允许您这样做。

将游标设置为行和列

您可以使用下面的代码获取EditText中与某一行和列对应的位置。然后可以使用editText。setSelection(getIndexFromPos(row, column))设置游标位置。 可以对该方法进行以下调用:

getIndexFromPos(x, y)到x行的y列 getIndexFromPos(x, -1)到x行的最后一列 getIndexFromPos(-1, y)到最后一行的y列 getIndexFromPos(-1, -1)到最后一行的最后一列

处理所有的行和列边界;输入大于该行长度的列将返回该行最后一列的位置。输入比EditText的行数大的行将转到最后一行。它应该是足够可靠的,因为它经过了大量的测试。

static final String LINE_SEPARATOR = System.getProperty("line.separator");

int getIndexFromPos(int line, int column) {
    int lineCount = getTrueLineCount();
    if (line < 0) line = getLayout().getLineForOffset(getSelectionStart());  // No line, take current line
    if (line >= lineCount) line = lineCount - 1;  // Line out of bounds, take last line

    String content = getText().toString() + LINE_SEPARATOR;
    int currentLine = 0;
    for (int i = 0; i < content.length(); i++) {
        if (currentLine == line) {
            int lineLength = content.substring(i, content.length()).indexOf(LINE_SEPARATOR);
            if (column < 0 || column > lineLength) return i + lineLength;  // No column or column out of bounds, take last column
            else return i + column;
        }
        if (String.valueOf(content.charAt(i)).equals(LINE_SEPARATOR)) currentLine++;
    }
    return -1;  // Should not happen
}

// Fast alternative to StringUtils.countMatches(getText().toString(), LINE_SEPARATOR) + 1
public int getTrueLineCount() {
    int count;
    String text = getText().toString();
    StringReader sr = new StringReader(text);
    LineNumberReader lnr = new LineNumberReader(sr);
    try {
        lnr.skip(Long.MAX_VALUE);
        count = lnr.getLineNumber() + 1;
    } catch (IOException e) {
        count = 0;  // Should not happen
    }
    sr.close();
    return count;
}

这个问题已经有了答案,但我认为可能有人想要这样做。

它的工作原理是遍历每个字符,每次找到行分隔符就增加行数。当行数等于所需的行时,它返回当前索引+列,如果列越界,则返回行结束索引。你也可以重用getTrueLineCount()方法,它返回忽略文本换行的行数,不像TextView.getLineCount()。

如果你想把光标放在EditText上的某个位置,你可以使用:

yourEditText.setSelection(position);

此外,还可以设置初始位置和最终位置,这样你就可以通过编程方式选择一些文本,如下所示:

yourEditText.setSelection(startPosition, endPosition);

请注意,设置选择可能很棘手,因为你可以把光标放在字符的前面或后面,下图解释了在这种情况下如何建立索引:

因此,如果您希望光标位于文本的末尾,只需将其设置为yourEditText.length()。

你可以这样用:

if (your_edittext.getText().length() > 0 ) {

    your_edittext.setSelection(your_edittext.getText().length());
}

您可以将这一行添加到EditText xml中吗

android:gravity="right"
android:ellipsize="end"
android:paddingLeft="10dp"//you set this as you need

但当任何文本写入时,你应该将左填充设置为零

你应该在addTextChangedListener上使用这个

这将把光标移动到edittext的末尾

.toString myEditText.setSelection (myEditText.getText () () . length ())