微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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);
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐