Android:如何在用户停止输入时向Google API发送请求?

我正在使用这个应用程序,用户可以在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);
    }
}

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...