我正在EditText
更改keyListener
的值。
但是当我更改文本时,光标移动到EditText
的开头。
我需要光标位于文本的末尾。
如何将光标移动到EditText
。
答案 0 :(得分:1218)
试试这个:
EditText et = (EditText)findViewById(R.id.inbox);
et.setSelection(et.getText().length());
答案 1 :(得分:208)
有一个名为append for ediitext的函数,它将字符串值附加到当前的edittext值,并将光标放在值的末尾。 您可以将字符串值作为当前的ediitext值,并调用append();
myedittext.append("current_this_edittext_string");
答案 2 :(得分:104)
<强>科特林强>:
将光标设置为起始位置:
val editText = findViewById(R.id.edittext_id) as EditText
editText.setSelection(0)
将光标设置为EditText的结尾:
val editText = findViewById(R.id.edittext_id) as EditText
editText.setSelection(editText.getText().length())
代码下方是将光标放在第二个字符后面:
val editText = findViewById(R.id.edittext_id) as EditText
editText.setSelection(2)
<强> JAVA 强>:
将光标设置为起始位置:
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());
代码下方是将光标放在第二个字符后面:
EditText editText = (EditText)findViewById(R.id.edittext_id);
editText.setSelection(2);
答案 3 :(得分:64)
如果您之前致电setText
并且新文本未在setSelection
(this主题转发)的单独runnable中获得布局阶段调用View.post(Runnable)
。
所以,对我来说这个代码有效:
editText.setText("text");
editText.post(new Runnable() {
@Override
public void run() {
registerPhone.setSelection("text".length());
}
});
编辑05/16/2019:现在我正在使用Kotlin扩展:
fun EditText.placeCursorToEnd() {
this.setSelection(this.text.length)
}
然后 - editText.placeCursorToEnd()。
答案 4 :(得分:40)
您也可以将光标放在EditText
视图中文本的末尾,如下所示:
EditText et = (EditText)findViewById(R.id.textview);
int textLength = et.getText().length();
et.setSelection(textLength, textLength);
答案 5 :(得分:26)
editText.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
editText.setSelection(editText.getText().length());
return false;
}
});
答案 6 :(得分:19)
这是另一种可能的解决方案:
et.append("");
如果因任何原因无效,请尝试使用此解决方案:
et.setSelection(et.getText().length());
答案 7 :(得分:11)
您应该能够使用EditText的方法setSelection()实现这一点,请参阅here
答案 8 :(得分:11)
就我而言,我创建了以下kotlin ext。功能,对某人可能有用
private fun EditText.focus(){
requestFocus()
setSelection(length())
}
然后按如下使用
mEditText.focus()
答案 9 :(得分:10)
/**
* Set cursor to end of text in edittext when user clicks Next on Keyboard.
*/
View.OnFocusChangeListener onFocusChangeListener = new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
if (b) {
((EditText) view).setSelection(((EditText) view).getText().length());
}
}
};
mEditFirstName.setOnFocusChangeListener(onFocusChangeListener);
mEditLastName.setOnFocusChangeListener(onFocusChangeListener);
它对我有用!
答案 10 :(得分:9)
我认为这可以达到你想要的效果。
Editable etext = mSubjectTextEditor.getText();
Selection.setSelection(etext, etext.length());
答案 11 :(得分:7)
如果你的EditText不清楚:
editText.setText("");
editText.append("New text");
答案 12 :(得分:6)
这个问题已经解决了,但是如果您想使用新发布的Android数据绑定工具,只需在XML中进行设置即可,
<data>
<variable name="stringValue" type="String"/>
</data>
...
<EditText
...
android:text="@={stringValue}"
android:selection="@{stringValue.length()}"
...
/>
答案 13 :(得分:5)
你好试试这个
<EditText
android:id="@+id/edt_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello World!"
android:cursorVisible="true"/>
EditText editText = findViewById(R.id.editText);
editText.setSelection(editText.getText().length()); // End point
光标
答案 14 :(得分:4)
如果您想选择所有文字而只输入新文字而不是旧文字,则可以使用
android:selectAllOnFocus="true"
答案 15 :(得分:4)
这有效
Editable etext = edittext.getText();
Selection.setSelection(etext,edittext.getText().toString().length());
答案 16 :(得分:3)
我测试过的所有其他代码都不能正常工作,因为用户仍然可以将插入符号/光标放在字符串中间的任何位置(例如:12 | 3.00 - 其中|是光标)。只要在EditText上发生触摸,我的解决方案总是将光标放在字符串的末尾。
最终的解决方案是:
// For a EditText like:
<EditText
android:id="@+id/EditTextAmount"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:hint="@string/amount"
android:layout_weight="1"
android:text="@string/zero_value"
android:inputType="text|numberDecimal"
android:maxLength="13"/>
@串/量=&#34; 0.00&#34; @串/ zero_value =&#34; 0.00&#34;
// Create a Static boolean flag
private static boolean returnNext;
// Set caret/cursor to the end on focus change
EditTextAmount.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View editText, boolean hasFocus) {
if(hasFocus){
((EditText) editText).setSelection(((EditText) editText).getText().length());
}
}
});
// Create a touch listener and put caret to the end (no matter where the user touched in the middle of the string)
EditTextAmount.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View editText, MotionEvent event) {
((EditText) editText).onTouchEvent(event);
((EditText) editText).setSelection(((EditText) editText).getText().length());
return true;
}
});
// Implement a Currency Mask with addTextChangedListener
EditTextAmount.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
String input = s.toString();
String output = new String();
String buffer = new String();
String decimals = new String();
String numbers = Integer.toString(Integer.parseInt(input.replaceAll("[^0-9]", "")));
if(returnNext){
returnNext = false;
return;
}
returnNext = true;
if (numbers.equals("0")){
output += "0.00";
}
else if (numbers.length() <= 2){
output += "0." + String.format("%02d", Integer.parseInt(numbers));
}
else if(numbers.length() >= 3){
decimals = numbers.substring(numbers.length() - 2);
int commaCounter = 0;
for(int i=numbers.length()-3; i>=0; i--){
if(commaCounter == 3){
buffer += ",";
commaCounter = 0;
}
buffer += numbers.charAt(i);
commaCounter++;
}
output = new StringBuilder(buffer).reverse().toString() + "." + decimals;
}
EditTextAmount.setText(output);
EditTextAmount.setSelection(EditTextAmount.getText().length());
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
/*String input = s.toString();
if(input.equals("0.0")){
EditTextAmount.setText("0.00");
EditTextAmount.setSelection(EditTextAmount.getText().length());
return;
}*/
}
@Override
public void afterTextChanged(Editable s) {
}
});
希望它有所帮助!
答案 17 :(得分:3)
editText.setSelection
在这里很神奇。基本上选择可以将光标放在您想要的任何位置。
EditText editText = findViewById(R.id.editText);
editText.setSelection(editText.getText().length());
这会将光标放在EditText的末尾。基本上editText.getText().length()
为您提供文本长度。然后使用setSelection
长度。
editText.setSelection(0);
用于将光标设置在起始位置(0)。
答案 18 :(得分:2)
这可以解决安全:
的问题 editText.setText("");
if (!TextUtils.isEmpty(text)) {
editText.append(text);
}
答案 19 :(得分:2)
我需要EditText
具备此功能,并且在我的笔记应用中具有多行支持。当用户导航到具有注释文本的片段时,我希望光标位于文本的末尾。
djleop建议的解决方案临近。但是,这样做的问题是,如果用户将光标放在文本中间的某个位置以进行编辑并开始输入,则光标将再次跳至文本结尾。发生这种情况是因为LiveData
将发出新值,并且光标将再次跳到文本的末尾,导致用户无法在中间的某个位置编辑文本。
为解决此问题,我使用MediatorLiveData
并使用一个标志将其长度String
分配一次。这将使LiveData仅读取一次值,即,当用户导航到片段时。之后,用户可以将光标放在要在其中编辑文本的任何位置。
ViewModel
private var accessedPosition: Boolean = false
val cursorPosition = MediatorLiveData<Event<Int>>().apply {
addSource(yourObject) { value ->
if(!accessedPosition) {
setValue(Event(yourObject.note.length))
accessedPosition = true
}
}
}
在这里,yourObject
是从数据库中检索的另一个LiveData,其中包含您在EditText
中显示的String文本。
然后使用绑定适配器将此MediatorLiveData
绑定到您的EditText。
XML
使用双向数据绑定来显示文本和接受文本输入。
<!-- android:text must be placed before cursorPosition otherwise we'll get IndexOutOfBounds exception-->
<EditText
android:text="@={viewModel.noteText}"
cursorPosition="@{viewModel.cursorPosition}" />
绑定适配器
@BindingAdapter("cursorPosition")
fun bindCursorPosition(editText: EditText, event: Event<Int>?) {
event?.getContentIfNotHandled()?.let { editText.setSelection(it) }
}
Event
类
此处的Event
类类似于Google的JoseAlcérreca编写的SingleLiveEvent。我在这里使用它来照顾屏幕旋转。使用单个Event
将确保当用户在中间的某个位置编辑文本并且屏幕旋转时,光标不会跳到文本的末尾。屏幕旋转时它将保持相同的位置。
这是Event
类:
open class Event<out T>(private val content: T) {
var hasBeenHandled = false
private set // Allow external read but not write
/**
* Returns the content and prevents its use again.
*/
fun getContentIfNotHandled(): T? {
return if (hasBeenHandled) {
null
} else {
hasBeenHandled = true
content
}
}
/**
* Returns the content, even if it's already been handled.
*/
fun peekContent(): T = content
}
这是适用于我并提供良好用户体验的解决方案。希望它也对您的项目有所帮助。
答案 20 :(得分:2)
以上答案对我没有用。所以我找到了一个新的解决方案。这可能对某人有帮助。根据当前日期,我一直在使用最新版本的Android Studio,即3.5。也许这可能是上述答案未显示任何效果的原因。
代码:
EditText available_seats = findViewById(R.id.available_seats);
Selection.setSelection(available_seats.getText(),available_seats.getText().length());
在这里,第一个参数是您要播放的Spanable文本值,而第二个参数是索引值。由于我们希望光标位于文本的末尾,因此我们使用了getText()。length()来返回文本的长度
答案 21 :(得分:1)
类似于@Anh Duy的答案,但它对我没有用。我还需要光标移动到最后只有当用户点击编辑文本并仍然能够选择光标的位置后,这是唯一适用于我的代码
boolean textFocus = false; //define somewhere globally in the class
//in onFinishInflate() or somewhere
editText.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
editText.onTouchEvent(event);
if(!textFocus) {
editText.setSelection(editText.getText().length());
textFocus = true;
}
return true;
}
});
editText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
textFocus = false;
}
});
答案 22 :(得分:0)
如果要在EditText视图中将光标放在文本的结尾
EditText rename;
String title = "title_goes_here";
int counts = (int) title.length();
rename.setSelection(counts);
rename.setText(title);
答案 23 :(得分:0)
etSSID.setSelection(etSSID.getText().length());
答案 24 :(得分:-1)
public class CustomEditText extends EditText {
public CustomEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomEditText(Context context) {
super(context);
}
public CustomEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
super.onFocusChanged(focused, direction, previouslyFocusedRect);
this.setSelection(this.getText().length());
}
@Override
protected void onSelectionChanged(int selStart, int selEnd) {
}
}
在XML文件中使用此CustomEditText,这将起作用。我测试了这个,它对我有用。
答案 25 :(得分:-3)
EditText editText=findViewById(R.id.et_id);
editText.requestFocus();