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


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


其中position为int型:

editText1.setSelection(position)

我想在不包含数据的编辑文本中设置光标位置

在空的EditText中只有一个位置,它是setSelection(0)。

或者您的意思是当您的活动打开时,您希望将焦点集中到您的EditText ?在这种情况下,它的requestFocus()


我用这种方法在以编程方式更新EditText文本后,将光标位置设置为文本的末尾 这里,etmsg是EditText

etmsg.setText("Updated Text From another Activity");
int position = etmsg.length();
Editable etext = etmsg.getText();
Selection.setSelection(etext, position);

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

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()来设置光标,并且它在设置alertdialog时不起作用,请确保在对话框创建后设置selection()

例子:

AlertDialog dialog = builder.show();
input.setSelection(x,y);

让editText2是你的第二个EditText视图。然后将以下代码放在onResume()中

editText2.setFocusableInTouchMode(true);
editText2.requestFocus();

或者把

<requestFocus />

在第二个EditText视图的xml布局中。


我不会得到setSelection()方法直接,所以我做如下和 魅力工作

EditText editText = (EditText)findViewById(R.id.edittext_id);
editText.setText("Updated New Text");
int position = editText.getText().length();
Editable editObj= editText.getText();
Selection.setSelection(editObj, position);

如何设置编辑文本光标的位置在Android

下面的代码是将光标设置为开始在EditText:

 EditText editText = (EditText)findViewById(R.id.edittext_id);
 editText.setSelection(0);

下面的代码是将光标设置到EditText的末尾:

EditText editText = (EditText)findViewById(R.id.edittext_id);
editText.setSelection(editText.getText().length());

下面的代码将光标设置在第2个字符位置之后:

 EditText editText = (EditText)findViewById(R.id.edittext_id);
 editText.setSelection(2);

记住在setSelection之前调用requestFocus()用于edittext。


如果要将光标设置在n个字符之后 从右向左,然后像这样。

edittext.setSelection(edittext.length()-n);

如果edittext的文本像

version<sub></sub>

你想把光标从右移到第6位

然后它将移动光标在-

    version<sub> </sub>
                ^

将游标设置为行和列

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


使用下面的行

e2.setSelection(e2.length());

e2是编辑文本对象名称


如果我们直接使用editText.setSelection(position),有时编辑文本光标不会出现在特定位置;. 那样的话,你可以试试

editText.post(new Runnable() {
                @Override
                public void run() {
                    editText.setSelection(string.length());
                }
            });

在kotlin中,你可以像这样创建一个扩展函数:

fun EditText.placeCursorAtLast() {
    val string = this.text.toString()
    this.setSelection(string.length)
}

然后简单地调用myEditText.placeCursorAtLast()


这段代码将帮助您将光标显示在编辑文本的最后一个位置。

 editText.requestFocus();
 editText.setSelection(editText.length());

EditText editText = findViewById(R.id.editText);
editText.setSelection(editText.getText().length());

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

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

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

yourEditText.setSelection(position);

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

yourEditText.setSelection(startPosition, endPosition);

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

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


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

如何解决在US Mobile中格式化后自动移动到最后一个位置的光标位置问题,如Android中的(xxx) xxx-xxxx。

private String oldText = "";
private int lastCursor;
private EditText mEtPhone;

@Override
    public void afterTextChanged(Editable s) {
String cleanString = AppUtil.cleanPhone(s.toString());

String format = cleanString.length() < 11 ? cleanString.replaceFirst("(\\d{3})(\\d{3})(\\d+)", "($1) $2-$3") :
                cleanString.substring(0, 10).replaceFirst("(\\d{3})(\\d{3})(\\d+)", "($1) $2-$3");


boolean isDeleted = format.length() < oldText.length();

        try {

            int cur = AppUtil.getPointer(lastCursor, isDeleted ? s.toString() : format, oldText, isDeleted);
            mEtPhone.setSelection(cur > 0 ? cur : format.length());

        }catch (Exception e){
            e.printStackTrace();
            mEtPhone.setSelection(format.length());
        }

        mEtPhone.addTextChangedListener(this);

    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        oldText = s.toString();
        lastCursor = start;
    }

在我的例子中,将下面的方法定义为任何Activityclass,活动名称为AppUtil并全局访问它

public static int getPointer(int index, String newString, String oldText, boolean isDeleted){

        int diff = Math.abs(newString.length() - oldText.length());

        return diff > 1 ? isDeleted ? index - diff : index  + diff : isDeleted ? index : index + 1;
    }

public static String cleanPhone(String phone){

        if(TextUtils.isEmpty(phone))
            return "";

        StringBuilder sb = new StringBuilder();
        for(char c : phone.toCharArray()){
            if(Character.isDigit(c))
                sb.append(c);
        }
        return sb.toString();
    }

如果你想设置一个特定的位置

edittext.setSelection(position);

你可以这样用:

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上使用这个


我回答这个问题太迟了,所以我想出来了。只需使用,android:gravity="center_horizontal"


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

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