我正在使用此应用,用户可以在autoCompleteTextView中输入一个位置,它会根据Google地方信息提示建议位置here。
但是,如果用户在一段时间内停止输入,我想通过仅发送请求来限制应用发送的请求数量。有谁知道怎么做?
答案 0 :(得分:14)
与this answer类似,但稍微简洁一点,没有引入额外的状态。您也不需要阈值检查,因为只有在实际需要过滤时才会调用performFiltering
。
子类化AutoCompleteTextView
似乎是唯一的方法,因为您无法覆盖/替换TextWatcher
添加的AutoCompleteTextView
。
public class DelayAutoCompleteTextView extends AutoCompleteTextView {
public DelayAutoCompleteTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
private final Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
DelayAutoCompleteTextView.super.performFiltering((CharSequence) msg.obj, msg.arg1);
}
};
@Override
protected void performFiltering(CharSequence text, int keyCode) {
mHandler.removeMessages(0);
mHandler.sendMessageDelayed(mHandler.obtainMessage(0, keyCode, 0, text), 750);
}
}
答案 1 :(得分:4)
我找到了解决上述问题的方法,该方法运行得非常好。我已通过以下方式扩展了AutoCompleteTextView。如果有人知道如何进一步改进此代码,请告诉我。
public class MyAutoCompleteTextView extends AutoCompleteTextView {
// initialization
int threshold;
int delay = 750;
Handler handler = new Handler();
Runnable run;
// constructor
public MyAutoCompleteTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void performFiltering(final CharSequence text, final int keyCode) {
// get threshold
threshold = this.getThreshold();
// perform filter on null to hide dropdown
doFiltering(null, keyCode);
// stop execution of previous handler
handler.removeCallbacks(run);
// creation of new runnable and prevent filtering of texts which length
// does not meet threshold
run = new Runnable() {
public void run() {
if (text.length() > threshold) {
doFiltering(text, keyCode);
}
}
};
// restart handler
handler.postDelayed(run, delay);
}
// starts the actual filtering
private void doFiltering(CharSequence text, int keyCode) {
super.performFiltering(text, keyCode);
}
}
答案 2 :(得分:0)
您可以使用TextWatcher,并监控文本条目之间的时间。我个人不喜欢对原生Android控件进行子类化的想法(不过,它肯定是一种有效的方法,而不是我喜欢的方法)。
文档: http://developer.android.com/reference/android/text/TextWatcher.html
答案 3 :(得分:0)
与上面的答案类似,我发现我需要继承AutoCompleteTextView。但是,因为互联网在我居住的地方有点慢,我发现每次用户按下按键时删除延迟处理程序都是一个问题。所以基本上如果我在用户停止输入后只运行过滤器500ms,结果可能需要几秒钟,这会让用户感到恼火。
所以相反,我不会每次都清除处理程序,让过滤每隔几百毫秒运行一次。我的代码不那么简洁Jan Berkel了。我确定你可以把它清理一下我太懒了,但是在互联网IMO缓慢的地区表现更好。
public class CustomCompleteView extends AutoCompleteTextView{
Handler handler=new Handler();
Runnable r;
boolean cleartogo=false;
boolean pending =false;
CharSequence btext;
int bkeyCode;
public CustomCompleteView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
public CustomCompleteView(Context context, AttributeSet attrs)
{
super(context,attrs);
}
public CustomCompleteView(Context context, AttributeSet attrs, int defStyle)
{
super(context,attrs,defStyle);
}
@Override
public void performFiltering(CharSequence text, int keyCode){
if (cleartogo){
cleartogo=false;
Log.d(MainActivity.DTAG,"Going to filter on " + text.toString());
pending=false;
super.performFiltering(btext, bkeyCode);
}
else
{
Log.d(MainActivity.DTAG,"Filtering rejected, too soon");
btext=text;
bkeyCode=keyCode;
if (!pending){
if (r==null)
r=new MyRunnable(this);
//try{handler.removeCallbacks(r);} catch (Exception ex){};
handler.postDelayed(r, 500);
pending=true;}
}
}
private class MyRunnable implements Runnable {
CustomCompleteView bc;
MyRunnable(CustomCompleteView c ) {
this.bc=c;
}
public void run() {
Log.d(MainActivity.DTAG,"Special Runnable running");
cleartogo=true;
bc.performFiltering(btext, bkeyCode);
}
}
}