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

前端之家收集整理的这篇文章主要介绍了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);
    }
}
原文链接:https://www.f2er.com/android/311685.html

猜你在找的Android相关文章