我想在用户从自动完成建议中选择文字时添加空格,因此当他继续输入时,他将从一个新单词开始。
我尝试使用TextWatcher
进行操作,但我得到了IndexOutOfBoundsException
。
有什么建议吗?
我使用的文本观察者是:
private class AddSpaceTextWatcher implements TextWatcher{
boolean shouldAddSpace = false;
@Override
public void beforeTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (count - before > 1) // check that the new input is not from the keyboard
shouldAddSpace = true;
}
@Override
public void afterTextChanged(Editable editable) {
if (shouldAddSpace) {
shouldAddSpace = false;
mAutoCompleteTextView.setText(" ");
}
}
}
我得到的例外是:
java.lang.IndexOutOfBoundsException: setSpan (18 ... 18) ends beyond length 1
at android.text.SpannableStringBuilder.checkRange(SpannableStringBuilder.java:1018)
at android.text.SpannableStringBuilder.setSpan(SpannableStringBuilder.java:611)
at android.text.SpannableStringBuilder.setSpan(SpannableStringBuilder.java:607)
at android.text.Selection.setSelection(Selection.java:76)
at android.text.Selection.setSelection(Selection.java:87)
at android.widget.EditText.setSelection(EditText.java:99)
at android.widget.SearchView.setQuery(SearchView.java:1465)
at android.widget.SearchView.onQueryRefine(SearchView.java:889)
at android.widget.SuggestionsAdapter.onClick(SuggestionsAdapter.java:371)
at android.view.View.performClick(View.java:4756)
at android.view.View$PerformClick.run(View.java:19748)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:898)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693)
答案 0 :(得分:3)
要选择多个项目,您只需使用MultiAutoCompleteTextView
,AutoCompleteTextView
是专门为此目的而构建的public void afterTextChanged(Editable editable) {
String text = editable.toString();
if (shouldAddSpace && text.length() > 0 && !text.endsWith(" ")) {
editable.append(' ');
}
}
的子类。
OR
如果你只是想在最后添加一个空格,只选择一个项目而不是试试这个:
mAutoCompleteTextView.showDropDown();
修改强>
添加空格后,您只需拨打Controller: User
| GET | /api/users | Action: index |
| GET | /api/users/create | Action: create |
| POST | /api/users | Action: save |
| GET | /api/users/${id} | Action: show |
| GET | /api/users/${id}/edit | Action: edit |
| PUT | /api/users/${id} | Action: update |
| PATCH | /api/users/${id} | Action: patch |
| DELETE | /api/users/${id} | Action: delete
即可使用更新的文字再次显示下拉列表。
答案 1 :(得分:0)
我不确定这是否可以解决您的问题,但mAutoCompleteTextView.setText(" ");
会删除该文字。所以我会这样做:
mAutoCompleteTextView.setText(mAutoCompleteTextView.getText().toString() + " ");
答案 2 :(得分:0)
mAutoCompleteTextView.setText(" ");
此代码将文本视图文本设置为“” - 您想要的是现有文本加空格。
mAutoCompleteTextView.setText(mAutoCompleteTextView.getText().append(" "));
答案 3 :(得分:0)
我更喜欢使用" MultiAutoCompleteTextView"实现你想要做的事情。
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="65dp"
android:ems="10" >
在java文件中:
private AutoCompleteTextView actv;
actv = (AutoCompleteTextView) findViewById(R.id.autoCompleteTextView1);
字符串列表:
String[] countries = getResources().
getStringArray(R.array.list_of_countries);
ArrayAdapter adapter = new ArrayAdapter
(this,android.R.layout.simple_list_item_1,countries);
actv.setAdapter(adapter);
此示例显示与用户输入对应的国家/地区列表。 我希望这个例子能为你的工作提供一些帮助。