如何仅在 android 中的 MultiAutoCompleteTextView 上插入 @ 字符时显示下拉列表
How to show dropdown only when inserting @ character on MultiAutoCompleteTextView in android
我有一个MultiAutoCompleteTextView
。它工作正常。但我只想在用户输入 @ 时显示建议下拉列表(就像在 facebook 应用程序中标记用户)。我不知道该怎么做。这是我的代码:
mChatbox = (MultiAutoCompleteTextView) findViewById(R.id.chatbox);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line, userList);
mChatBox.setAdapter(adapter);
mChatBox.setTokenizer(new SpaceTokenizer());
public class SpaceTokenizer implements MultiAutoCompleteTextView.Tokenizer {
public int findTokenStart(CharSequence text, int cursor) {
int i = cursor;
while (i > 0 && text.charAt(i - 1) != ' ') {
i--;
}
while (i < cursor && text.charAt(i) == ' ') {
i++;
}
return i;
}
public int findTokenEnd(CharSequence text, int cursor) {
int i = cursor;
int len = text.length();
while (i < len) {
if (text.charAt(i) == ' ') {
return i;
} else {
i++;
}
}
return len;
}
public CharSequence terminateToken(CharSequence text) {
int i = text.length();
while (i > 0 && text.charAt(i - 1) == ' ') {
i--;
}
if (i > 0 && text.charAt(i - 1) == ' ') {
return text;
} else {
if (text instanceof Spanned) {
SpannableString sp = new SpannableString(text + " ");
TextUtils.copySpansFrom((Spanned) text, 0, text.length(),
Object.class, sp, 0);
return sp;
} else {
return text + " ";
}
}
}
我自己找到了解决办法。我创建了扩展 MultiAutoCompleteTextView
并覆盖其中的 performFiltering
的自定义视图。检查第一个字符是否为“@”,然后过滤其后的下一个字符。否则,将字符替换为“*”以避免过滤。这是我的代码。
@Override
protected void performFiltering(CharSequence text, int start, int end, int keyCode) {
if (text.charAt(start) == '@') {
start = start + 1;
} else {
text = text.subSequence(0, start);
for (int i = start; i < end; i++) {
text = text + "*";
}
}
super.performFiltering(text, start, end, keyCode);
}
创建一个扩展 MultiAutoCompleteTextView 的自定义文本视图 -> 覆盖 enoughToFilter() -> 将阈值设置为 0(下面给定代码中的粗体变量):
public boolean enoughToFilter() {
Editable text = getText();
int end = getSelectionEnd();
if (end < 0 || mTokenizer == null) {
return false;
}
int start = mTokenizer.findTokenStart(text, end);
if (end - start >= mThreshold && start != -1) {
return true;
} else {
return false;
}
}
使用此代码,您将在按下 @
时看到自动建议的列表
如果你想检测你的字符串以'@'开头表示提及(标记)某人或'#'表示hashTag,然后用它进行查询或过滤,你可以按照下面的代码:
@Override
public void onTextChanged(CharSequence s, int start, int before, final int count) {
if (s.length() > 0) {
// Todo: query mentions
Matcher mentionMatcher = Pattern.compile("@([A-Za-z0-9_-]+)").matcher(s.toString());
// while matching
while (mentionMatcher.find()) {
yourSearchText = s.toString().substring(mentionMatcher.start() + 1, mentionMatcher.end());
// do query with yourSearchText below
}
}
}
它引用自 link Multiautocompletetextview, Show autocomplete drop down only when user presses a key after '@' key (like mention in FB app) 请向下滚动找到@Phuong Sala 的答案。
我有一个MultiAutoCompleteTextView
。它工作正常。但我只想在用户输入 @ 时显示建议下拉列表(就像在 facebook 应用程序中标记用户)。我不知道该怎么做。这是我的代码:
mChatbox = (MultiAutoCompleteTextView) findViewById(R.id.chatbox);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line, userList);
mChatBox.setAdapter(adapter);
mChatBox.setTokenizer(new SpaceTokenizer());
public class SpaceTokenizer implements MultiAutoCompleteTextView.Tokenizer {
public int findTokenStart(CharSequence text, int cursor) {
int i = cursor;
while (i > 0 && text.charAt(i - 1) != ' ') {
i--;
}
while (i < cursor && text.charAt(i) == ' ') {
i++;
}
return i;
}
public int findTokenEnd(CharSequence text, int cursor) {
int i = cursor;
int len = text.length();
while (i < len) {
if (text.charAt(i) == ' ') {
return i;
} else {
i++;
}
}
return len;
}
public CharSequence terminateToken(CharSequence text) {
int i = text.length();
while (i > 0 && text.charAt(i - 1) == ' ') {
i--;
}
if (i > 0 && text.charAt(i - 1) == ' ') {
return text;
} else {
if (text instanceof Spanned) {
SpannableString sp = new SpannableString(text + " ");
TextUtils.copySpansFrom((Spanned) text, 0, text.length(),
Object.class, sp, 0);
return sp;
} else {
return text + " ";
}
}
}
我自己找到了解决办法。我创建了扩展 MultiAutoCompleteTextView
并覆盖其中的 performFiltering
的自定义视图。检查第一个字符是否为“@”,然后过滤其后的下一个字符。否则,将字符替换为“*”以避免过滤。这是我的代码。
@Override
protected void performFiltering(CharSequence text, int start, int end, int keyCode) {
if (text.charAt(start) == '@') {
start = start + 1;
} else {
text = text.subSequence(0, start);
for (int i = start; i < end; i++) {
text = text + "*";
}
}
super.performFiltering(text, start, end, keyCode);
}
创建一个扩展 MultiAutoCompleteTextView 的自定义文本视图 -> 覆盖 enoughToFilter() -> 将阈值设置为 0(下面给定代码中的粗体变量):
public boolean enoughToFilter() {
Editable text = getText();
int end = getSelectionEnd();
if (end < 0 || mTokenizer == null) {
return false;
}
int start = mTokenizer.findTokenStart(text, end);
if (end - start >= mThreshold && start != -1) {
return true;
} else {
return false;
}
}
使用此代码,您将在按下 @
如果你想检测你的字符串以'@'开头表示提及(标记)某人或'#'表示hashTag,然后用它进行查询或过滤,你可以按照下面的代码:
@Override
public void onTextChanged(CharSequence s, int start, int before, final int count) {
if (s.length() > 0) {
// Todo: query mentions
Matcher mentionMatcher = Pattern.compile("@([A-Za-z0-9_-]+)").matcher(s.toString());
// while matching
while (mentionMatcher.find()) {
yourSearchText = s.toString().substring(mentionMatcher.start() + 1, mentionMatcher.end());
// do query with yourSearchText below
}
}
}
它引用自 link Multiautocompletetextview, Show autocomplete drop down only when user presses a key after '@' key (like mention in FB app) 请向下滚动找到@Phuong Sala 的答案。