文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android中怎么实现poi搜索功能

2023-05-30 21:40

关注

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

布局

<?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) {      }    });    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();//输入查询提示的异步接口实现  }

关于Android中怎么实现poi搜索功能问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注编程网行业资讯频道了解更多相关知识。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯