我正在尝试向我的应用添加地理编码搜索功能,该功能与Google地图中的功能相同:
我已使用ActionView在操作栏中实现了搜索: 我在Actionbar中添加了一个项目:
<item
android:id="@+id/menu_Search"
android:icon="@drawable/ic_action_search"
android:orderInCategory="97"
android:showAsAction="always|collapseActionView"
android:title="Search"
android:actionViewClass="android.widget.SearchView"/>
并定义了如何在onCreateOptionsMenu中管理它:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
SearchView avSearch = (SearchView) menu.findItem(R.id.menu_Search).getActionView();
avSearch.setIconifiedByDefault(true);
avSearch.setOnQueryTextListener(new OnQueryTextListener() {
int changes = 0;
@Override
public boolean onQueryTextChange(String s) {
if (changes >= 4 || s.endsWith(" ")) {
submitLocationQuery(s);
changes = 0;
} else
++changes;
return true;
}
@Override
public boolean onQueryTextSubmit(String query) {
submitLocationQuery(query);
return true;
}
});
return true;
}
搜索由背景线程提供给Geocoder:
private void submitLocationQuery(final String query) {
Thread thrd = new Thread() {
public void run() {
try {
foundAddresses = mGeoCoder.getFromLocationName(query, 5);
gcCallbackHandler.sendEmptyMessage(0);
} catch (IOException e) {
Log.e(this.getClass().getName(), "Failed to connect to geocoder service", e);
}
}
};
thrd.start();
}
由处理程序接收并处理:
private Handler gcCallbackHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
if (foundAddresses != null && !foundAddresses.isEmpty()) {
GeoPoint foundGeo = new GeoPoint((int) (foundAddresses.get(0).getLatitude() * 1E6), (int) (foundAddresses.get(0).getLongitude() * 1E6));
mapView.getController().animateTo(foundGeo);
}
}
};
所有这些都有效,我的地图会在搜索时缩放到相应位置,但如何在Google地图搜索下显示搜索结果?
提前感谢您的回复, 安克
答案 0 :(得分:2)
你在Spinner中看到的内容就像Spinner一样只是建议。
您可以按照本指南获得此效果: http://www.grokkingandroid.com/android-tutorial-adding-suggestions-to-search/
或Android开发人员指南: http://developer.android.com/guide/topics/search/adding-custom-suggestions.html