我正在使用这个应用程序,用户可以在autoCompleteTextView中输入一个位置,它将根据Google Places Api建议位置,如
here所述.
但是,如果用户在一段时间内停止输入,我只想通过发送请求来限制应用发送的请求量.有谁知道如何做到这一点?
解决方法
类似于
this answer,但稍微更简洁,没有引入额外的状态.您也不需要阈值检查,因为只有当实际需要过滤时才调用performFiltering.
Subclassing AutoCompleteTextView似乎是唯一的方法,因为您不能覆盖/替换由AutoCompleteTextView添加的TextWatcher.
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,text),750); } }