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


当前回答

我相信最简单的方法就是使用填充。

Say in your xml's edittext section, add android: paddingLeft = " 100 dp” This will move your start position of cursor 100dp right from left end.

同理,你可以用 android: paddingRight = " 100 dp” 这将把你的光标的结束位置从右端向左移动100dp。

要了解更多细节,请查看我博客上的这篇文章:Android:在EditText Widget中设置光标的起始和结束位置

其他回答

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

其中position为int型:

editText1.setSelection(position)

如果要在EditText中设置光标位置?试试下面的代码

EditText rename;
 String title = "title_goes_here";
 int counts = (int) title.length();
 rename.setSelection(counts);
 rename.setText(title);

将游标设置为行和列

您可以使用下面的代码获取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()。

if(myEditText.isSelected){
    myEditText.setSelection(myEditText.length())
    }