gpt4 book ai didi

android - 在 Comma Tokenizer android 中用管道符号替换逗号符号不起作用

转载 作者:行者123 更新时间:2023-11-30 00:03:51 24 4
gpt4 key购买 nike

我在 MultiAutoCompleteTextView 中使用 Comma Tokenizer,但我想在每个选定文本后使用一个竖线符号,而不是一个逗号。在堆栈上,我尝试替换基类中的符号,但它不起作用。如果我做错了什么,请告诉我

public static class CommaTokenizer implements 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 + "| ";
}
}
}

最佳答案

试试这个

import android.text.SpannableString;
import android.text.Spanned;
import android.text.TextUtils;
import android.widget.MultiAutoCompleteTextView;

/**
* Created by nilesh on 21/3/18.
*/

public class MyTokenizer 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 + "| ";
}
}
}
}

Activity 代码

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.InputType;
import android.widget.ArrayAdapter;
import android.widget.MultiAutoCompleteTextView;

public class MainActivity extends AppCompatActivity {

MultiAutoCompleteTextView multiAutoCompleteTextView;


String []myArray;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

myArray=getResources().getStringArray(R.array.spinner_array);

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, myArray);


multiAutoCompleteTextView = findViewById(R.id.mMultiAutoCompleteTextView);

multiAutoCompleteTextView.setTokenizer(new MyTokenizer());

multiAutoCompleteTextView.setAdapter(adapter);
multiAutoCompleteTextView.setTokenizer(new MyTokenizer());
multiAutoCompleteTextView.setInputType(InputType.TYPE_CLASS_TEXT);
multiAutoCompleteTextView.setThreshold(1);

}


}

关于android - 在 Comma Tokenizer android 中用管道符号替换逗号符号不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49398563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com