<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 认知 android.app.SearchManager（一）</title>
	<atom:link href="http://www.poemcode.net/2009/09/android-app-searchmanager-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.poemcode.net/2009/09/android-app-searchmanager-1/</link>
	<description>These codes, As beautiful as poetry!</description>
	<lastBuildDate>Thu, 02 Feb 2012 03:25:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: allankliu</title>
		<link>http://www.poemcode.net/2009/09/android-app-searchmanager-1/comment-page-1/#comment-65</link>
		<dc:creator>allankliu</dc:creator>
		<pubDate>Wed, 09 Dec 2009 05:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.poemcode.net/?p=507#comment-65</guid>
		<description>Google=search。无怪乎谷歌把个SearchManager做的那么复杂。昨天我看了SDK中的这部分。坦率地说，它写的有些复杂了。其实，基本上就是两种情况而已：a) web based query search b) local filter search。而所有的Manifest + searchable.xml，以及各类回调函数都是提供给框架使用的。SDK中关于关闭和使能 Web Browser based Search 其实没有特别的意义。混在一起说，让人云里雾里的。

搞了半天，最后我还是把自己的代码和APIDemo和Dr.TYT的BigPlanet的源代码做了比较，才发现最终问题出在了Manifest中的Meta-data声明出错。

Anyway，我总算在MapView中调出 Search UI了。接下来就是通过后台 ListActivity 去抓 Google Geocoder。

顺便说一下，您的翻译是我检索到的少数论及 SearchManager 的中文博客。非常感谢此文给我的方向指引。我原来想用半透背景+Form去模拟一个SearchBar出来。</description>
		<content:encoded><![CDATA[<p>Google=search。无怪乎谷歌把个SearchManager做的那么复杂。昨天我看了SDK中的这部分。坦率地说，它写的有些复杂了。其实，基本上就是两种情况而已：a) web based query search b) local filter search。而所有的Manifest + searchable.xml，以及各类回调函数都是提供给框架使用的。SDK中关于关闭和使能 Web Browser based Search 其实没有特别的意义。混在一起说，让人云里雾里的。</p>
<p>搞了半天，最后我还是把自己的代码和APIDemo和Dr.TYT的BigPlanet的源代码做了比较，才发现最终问题出在了Manifest中的Meta-data声明出错。</p>
<p>Anyway，我总算在MapView中调出 Search UI了。接下来就是通过后台 ListActivity 去抓 Google Geocoder。</p>
<p>顺便说一下，您的翻译是我检索到的少数论及 SearchManager 的中文博客。非常感谢此文给我的方向指引。我原来想用半透背景+Form去模拟一个SearchBar出来。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xu Haojie</title>
		<link>http://www.poemcode.net/2009/09/android-app-searchmanager-1/comment-page-1/#comment-64</link>
		<dc:creator>Xu Haojie</dc:creator>
		<pubDate>Tue, 08 Dec 2009 15:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.poemcode.net/?p=507#comment-64</guid>
		<description>由于一些原因，暂时中断了其余部分的翻译整理。--- 我本意是想以自己的理解来阐述，但因为对这个方面的了解还不算深入，因此就成了“英译汉”，希望能帮到你。</description>
		<content:encoded><![CDATA[<p>由于一些原因，暂时中断了其余部分的翻译整理。&#8212; 我本意是想以自己的理解来阐述，但因为对这个方面的了解还不算深入，因此就成了“英译汉”，希望能帮到你。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allankliu</title>
		<link>http://www.poemcode.net/2009/09/android-app-searchmanager-1/comment-page-1/#comment-62</link>
		<dc:creator>allankliu</dc:creator>
		<pubDate>Tue, 08 Dec 2009 13:47:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.poemcode.net/?p=507#comment-62</guid>
		<description>这是SDK的一部分，其余部分您在翻译么？

我在观察Google Map中的Search，其中Search按钮是调用Google的Geocoder服务的。但是我并没有看到有另外一个View出现。好像这个应用中Invoker和Searchable是同一个Activity，将获得的Geocoder结果直接应用在地图中，或者利用toast弹出失败通知。是不是？而SDK中队Query Search主张两个Activity对应两个View。

我在做一个国内的Wifi本地地图，想尽可能地参考Gmap设计。只是应用不同的本地图层API而已。目前SearchManager还没有做出来。正在看这方面的说明。</description>
		<content:encoded><![CDATA[<p>这是SDK的一部分，其余部分您在翻译么？</p>
<p>我在观察Google Map中的Search，其中Search按钮是调用Google的Geocoder服务的。但是我并没有看到有另外一个View出现。好像这个应用中Invoker和Searchable是同一个Activity，将获得的Geocoder结果直接应用在地图中，或者利用toast弹出失败通知。是不是？而SDK中队Query Search主张两个Activity对应两个View。</p>
<p>我在做一个国内的Wifi本地地图，想尽可能地参考Gmap设计。只是应用不同的本地图层API而已。目前SearchManager还没有做出来。正在看这方面的说明。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mery</title>
		<link>http://www.poemcode.net/2009/09/android-app-searchmanager-1/comment-page-1/#comment-35</link>
		<dc:creator>mery</dc:creator>
		<pubDate>Wed, 18 Nov 2009 06:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.poemcode.net/?p=507#comment-35</guid>
		<description>SearchManager searchManager = (SearchManager)mContext.getSystemService(Context.SEARCH_SERVICE);
这样不是就初始化了吗?</description>
		<content:encoded><![CDATA[<p>SearchManager searchManager = (SearchManager)mContext.getSystemService(Context.SEARCH_SERVICE);<br />
这样不是就初始化了吗?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

