Android中怎么实现poi搜索功能
Android中怎么实现poi搜索功能,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
创新互联公司坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站建设、做网站、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的古蔺网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
第一,就是设置背景的drawable为纯白色导致键盘弹出的时候,recyclerview的布局被顶上去导致出现白色布局,有点扎眼;最后改成了设置为和背景色一个颜色就和好了
Window window = getDialog().getWindow(); WindowManager.LayoutParams lp = window.getAttributes(); lp.gravity = Gravity.CENTER; window.setBackgroundDrawable(new ColorDrawable(ContextCompat.getColor(getActivity(), R.color.color_gray_f2))); window.setAttributes(lp);
布局
第二个问题是键盘弹出的时候,会出现dialog布局整体被顶上去
最后通过设置 style来解决
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //解决dialogfragment布局不被顶上去的方法 setStyle(DialogFragment.STYLE_NORMAL, android.R.style.Theme_Black_NoTitleBar); }
最后就是实现搜索功能了
第一个点击搜索时,键盘和搜索按钮两个都是同样的效果
/** * 搜索功能 */ private void searchLocationPoi() { //关闭键盘 KeyBoardUtils.closeKeybord(poiSearchInMaps, BaseApplication.mContext); if (TextUtils.isEmpty(poiSearchInMaps.getText().toString().trim())) { ToastUtils.showToastCenter("内容为空!"); } else { query = new PoiSearch.Query(poiSearchInMaps.getText().toString().trim(), "", "");// 第一个参数表示搜索字符串,第二个参数表示poi搜索类型,第三个参数表示poi搜索区域(空字符串代表全国) query.setPageSize(20);// 设置每页最多返回多少条poiitem query.setPageNum(0);// 设置查第一页 poiSearch = new PoiSearch(getActivity(), query); poiSearch.setOnPoiSearchListener(this); poiSearch.searchPOIAsyn(); } }
然后回调中进行处理
@Override public void onPoiSearched(PoiResult poiResult, int errcode) { Logger.e(poiResult.getPois().toString() + "" + errcode); if (errcode == 1000) { datas = new ArrayList<>(); ArrayListpois = poiResult.getPois(); for (int i = 0; i < pois.size(); i++) { LocationBean locationBean = new LocationBean(); locationBean.title = pois.get(i).getTitle(); locationBean.snippet = pois.get(i).getSnippet(); datas.add(locationBean); } searchCarAdapter.setNewData(datas); } }
还有就是监听EditText里面内容的变化来搜索,其实也很简单
poiSearchInMaps.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { } @Override public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) { textChangeSearch(charSequence); } @Override public void afterTextChanged(Editable editable) { } }); /** * 监听edittext内容的变化,去搜索 */ private void textChangeSearch(CharSequence charSequence) { String content = charSequence.toString().trim();//获取自动提示输入框的内容 Logger.e(content); InputtipsQuery inputtipsQuery = new InputtipsQuery(content, "");//初始化一个输入提示搜索对象,并传入参数 Inputtips inputtips = new Inputtips(getActivity(), inputtipsQuery);//定义一个输入提示对象,传入当前上下文和搜索对象 inputtips.setInputtipsListener(new Inputtips.InputtipsListener() { @Override public void onGetInputtips(Listlist, int errcode) { Logger.e(list.toString() + errcode); if (errcode == 1000 && list != null) { datas = new ArrayList<>(); for (int i = 0; i < list.size(); i++) { LocationBean locationBean = new LocationBean(); Tip tip = list.get(i); locationBean.latitude = tip.getPoint().getLatitude(); locationBean.longitude = tip.getPoint().getLongitude(); locationBean.snippet = tip.getName(); locationBean.title = tip.getDistrict(); datas.add(locationBean); } searchCarAdapter.setNewData(datas); } } });//设置输入提示查询的监听,实现输入提示的监听方法onGetInputtips() inputtips.requestInputtipsAsyn();//输入查询提示的异步接口实现 }
关于Android中怎么实现poi搜索功能问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
本文名称:Android中怎么实现poi搜索功能
当前地址:http://scgulin.cn/article/ipeegd.html