經過高仿深圳的應用近期打算。UI咱們已經作了,我見過APP查詢界面。關閉網絡也將是可以查詢其指示數據被存儲在數據庫中,或者是第一網絡,全部網站上的數據是好了。我想簡單地使用查詢地圖提供了。html
曾經是接觸的百度地圖。只是百度地圖,不怎麼好用,我也就用高德地圖了關於project創建 可以看官方文檔。java
高德配置項目
android
到後面的項目,說不是很是清楚,要看官方demo才行。數據庫
我就乾脆本身寫一個。 看UI吧 我再把UI代碼貼出來
api
Edittext輸入信息 button將數據提交查詢 listview 顯示查詢回調的數據
網絡
<?xml version="1.0" encoding="utf-8"?less
> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" tools:ignore="UselessLeaf,UselessParent" > <EditText android:id="@+id/et_keyword" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" android:hint="請輸入關鍵字" /> <Button android:id="@+id/btn_search" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="搜索" /> </LinearLayout> <ListView android:id="@+id/lv_result" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>異步
第一步:初始化控件
ide
// 控件相關 private EditText mEtKeyword; private Button mBtnSearch; private ListView mLvResult;
private void initView() { mEtKeyword = (EditText) findViewById(R.id.et_keyword); mBtnSearch = (Button) findViewById(R.id.btn_search); mLvResult = (ListView) findViewById(R.id.lv_result); mBtnSearch.setOnClickListener(this); mLvResult.setOnItemClickListener(this); }
@Override public void onClick(View v) { switch (v.getId()) { case R.id.btn_search: //1.得到用戶輸入數據 String keyword = mEtKeyword.getText().toString(); //2.推斷用戶是否輸入爲空 if (keyword.trim().length() == 0) { Toast.makeText(this, "請輸入查詢條件", Toast.LENGTH_LONG).show(); } else { //3.不爲空進行搜索 search(keyword); } break; default: break; } }
這時候咱們看看官方文檔是怎麼說的
網站
1.搜索條件設置
您需要經過 PoiSearch.Query(String query, String ctgr, String city) 設置搜索條件。參數「query」爲搜索的keyword,「ctgr」爲搜索類型(類型參照表從相關下載處獲取)、「city」爲搜索城市。keyword、類型至少輸入一個。搜索城市必須輸入。
經過 Query.setPageSize(int) 設置查詢每頁的結果數目。
經過 Query.setPageNum(int) 設置查詢第幾頁。
2.發送請求和接收數據。
使用 PoiSearch.searchPOIAsyn() 搜索 POI。使用 PoiSearch.setOnPoiSearchListener() 方法設置監聽器。在 PoiSearch.OnPoiSearchListener 接口回調方法 onPoiSearched(PoiResult poiResult,int rCode)中處理返回結果。
當指定搜索城市時,若沒有返回 POI 結果,則會返回包括keyword的建議城市名稱。當keyword搜索無結果時,則會返回搜索建議keyword。
SO 咱們先定義 // 興趣點查詢先關
private PoiSearch search;
//會返回查詢數據的類
private PoiSearch.Query query;
因爲我在深圳 因此 我會搜深圳的東西
private void search(String keyword) { // 初始化查詢條件 query = new Query(keyword, null, "深圳"); query.setPageSize(10); query.setPageNum(1); // 查詢興趣點 search = new PoiSearch(this, query); // 異步搜索 search.searchPOIAsyn(); search.setOnPoiSearchListener(this); }
/* -------------------- 興趣點查詢回調 -------------------- */ @Override public void onPoiItemDetailSearched(PoiItemDetail arg0, int arg1) { } @Override public void onPoiSearched(PoiResult poiResult, int rCode) { List<String> strs = new ArrayList<String>(); items = poiResult.getPois(); if (items != null && items.size() > 0) { PoiItem item = null; for (int i = 0, count = items.size(); i < count; i++) { item = items.get(i); strs.add(item.getTitle()); } // 給ListView賦值。顯示結果 ArrayAdapter<String> array = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, strs); mLvResult.setAdapter(array); } } /* -------------------- 興趣點查詢回調 -------------------- */