Android 高德地图之poi搜索功能的实现代码

所属分类: 软件编程 / Android 阅读数: 58
收藏 0 赞 0 分享

废话不多说,先看效果,如果大家感觉不错,请参考实现代码

这里写图片描述

这个功能我是用Fragmentdialog里面做的,也遇到不少坑

第一,就是设置背景的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);

布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  xmlns:tools="http://schemas.android.com/tools"
  android:background="@color/color_gray_f2"
  android:orientation="vertical">
  <RelativeLayout
    android:id="@+id/search_maps_bar"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_centerHorizontal="true"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/new_card">
    <ImageButton
      android:id="@+id/dialog_search_back"
      android:layout_width="50dp"
      android:layout_height="match_parent"
      android:layout_centerVertical="true"
      android:layout_margin="2dp"
      android:background="@drawable/button_background_selector"
      android:src="@drawable/ic_qu_appbar_back"/>
    <ImageButton
      android:id="@+id/dialog_serach_btn_search"
      android:layout_width="50dp"
      android:layout_height="match_parent"
      android:layout_alignParentRight="true"
      android:layout_centerVertical="true"
      android:layout_margin="2dp"
      android:background="@drawable/button_background_selector"
      android:src="@drawable/ic_qu_search"
      tools:ignore="ContentDescription,RtlHardcoded"/>
    <EditText
      android:id="@+id/dialog_search_et"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:layout_centerInParent="true"
      android:layout_marginLeft="5.0dip"
      android:layout_marginRight="5.0dip"
      android:layout_toLeftOf="@+id/dialog_serach_btn_search"
      android:layout_toRightOf="@+id/dialog_search_back"
      android:background="@android:color/transparent"
      android:completionThreshold="1"
      android:dropDownVerticalOffset="1.0dip"
      android:hint="请输入关键字"
      android:imeOptions="actionSearch|flagNoExtractUi"
      android:inputType="text|textAutoComplete"
      android:maxHeight="50dp"
      android:maxLength="20"
      android:minHeight="50dp"
      android:singleLine="true"
      android:textColor="#000000"
      android:textSize="16.0sp"/>
  </RelativeLayout>
  <android.support.v7.widget.RecyclerView
    android:id="@+id/dialog_search_recyclerview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="@dimen/dp_10" />
</LinearLayout>

第二个问题是键盘弹出的时候,会出现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<>();
      ArrayList<PoiItem> pois = 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(List<Tip> list, 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();//输入查询提示的异步接口实现
  }

ok,搞定,最后只需要搞个回调,把Search后点击的item传回去就好了.希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

更多精彩内容其他人还在看

Android样式和主题之选择器的实例讲解

今天小编就为大家分享一篇关于Android样式和主题之选择器的实例讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Android应用动态修改主题的方法示例

今天小编就为大家分享一篇关于Android应用动态修改主题的方法示例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Flutter 网络请求框架封装详解

这篇文章主要介绍了Flutter 网络请求框架封装详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Flutter倒计时/计时器的实现代码

这篇文章主要介绍了Flutter倒计时/计时器的实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android使用google breakpad捕获分析native cash

这篇文章主要介绍了Android使用google breakpad捕获分析native cash 的相关知识,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解Flutter WebView与JS互相调用简易指南

这篇文章主要介绍了详解Flutter WebView与JS互相调用简易指南,分为JS调用Flutter和Flutter调用JS,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android开发实现ListView和adapter配合显示图片和文字列表功能示例

这篇文章主要介绍了Android开发实现ListView和adapter配合显示图片和文字列表功能,涉及Android使用ListView结合adapter适配器实现图文显示功能相关的布局、解析、权限控制等操作技巧,需要的朋友可以参考下
收藏 0 赞 0 分享

Android文字基线Baseline算法的使用讲解

今天小编就为大家分享一篇关于Android文字基线Baseline算法的使用讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Flutter自定义实现神奇动效的卡片切换视图的示例代码

这篇文章主要介绍了Flutter自定义实现神奇动效的卡片切换视图的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android实现自定义滑动刻度尺方法示例

这篇文章主要给大家介绍了关于Android实现自定义滑动刻度尺的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
收藏 0 赞 0 分享
查看更多