<?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: Double click/tap detection on android&#8217;s MapView</title>
	<atom:link href="http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/feed/" rel="self" type="application/rss+xml" />
	<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/</link>
	<description>Thoughts on technology, skydiving, life, and the universe...</description>
	<lastBuildDate>Wed, 04 Jan 2012 17:34:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: nocivus</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-32016</link>
		<dc:creator>nocivus</dc:creator>
		<pubDate>Wed, 04 Jan 2012 17:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-32016</guid>
		<description>This solution is a bit old. I&#039;m sure that there are better ones these days ;)&lt;p style=&quot;color: #A0A0A8;&quot;&gt; </description>
		<content:encoded><![CDATA[<p>This solution is a bit old. I&#039;m sure that there are better ones these days <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> &lt;p style=&#8221;color: #A0A0A8;&#8221;&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petr</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-32015</link>
		<dc:creator>Petr</dc:creator>
		<pubDate>Wed, 04 Jan 2012 17:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-32015</guid>
		<description>This solution has problem with zoom buttons in mapView! When you quickly zoom with buttons, it do bad moves. </description>
		<content:encoded><![CDATA[<p>This solution has problem with zoom buttons in mapView! When you quickly zoom with buttons, it do bad moves.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pich</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-8008</link>
		<dc:creator>Pich</dc:creator>
		<pubDate>Tue, 14 Dec 2010 20:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-8008</guid>
		<description>Really simple and clean solution, thanks for sharing! </description>
		<content:encoded><![CDATA[<p>Really simple and clean solution, thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charizard</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-3756</link>
		<dc:creator>Charizard</dc:creator>
		<pubDate>Tue, 22 Jun 2010 00:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-3756</guid>
		<description>I would like to say thanks!
I&#039;m a student and currently learning stuff about programming, and the way you just recreated the mapview just made me go &quot;cooooooool&quot;
keep up the good work :)</description>
		<content:encoded><![CDATA[<p>I would like to say thanks!<br />
I&#8217;m a student and currently learning stuff about programming, and the way you just recreated the mapview just made me go &#8220;cooooooool&#8221;<br />
keep up the good work <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Assuncao</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-1248</link>
		<dc:creator>Pedro Assuncao</dc:creator>
		<pubDate>Wed, 06 Jan 2010 12:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-1248</guid>
		<description>No problem, glad I could help :)</description>
		<content:encoded><![CDATA[<p>No problem, glad I could help <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria</title>
		<link>http://pedroassuncao.com/2009/01/double-clicktap-detection-on-androids-mapview/comment-page-1/#comment-1247</link>
		<dc:creator>Victoria</dc:creator>
		<pubDate>Wed, 06 Jan 2010 11:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=37#comment-1247</guid>
		<description>Thank you,

Just what I was looking for.

I modified this slightly as I wanted to know the coords of the location the user had clicked so I could add another item to the map.  So instead of getting the controller and zooming I have: getProjection().fromPixels((int)ev.getX(), (int)ev.getY());

At that point I launch the context menu allowing the user to insert an item at that point or cancel.

Regards
Victoria</description>
		<content:encoded><![CDATA[<p>Thank you,</p>
<p>Just what I was looking for.</p>
<p>I modified this slightly as I wanted to know the coords of the location the user had clicked so I could add another item to the map.  So instead of getting the controller and zooming I have: getProjection().fromPixels((int)ev.getX(), (int)ev.getY());</p>
<p>At that point I launch the context menu allowing the user to insert an item at that point or cancel.</p>
<p>Regards<br />
Victoria</p>
]]></content:encoded>
	</item>
</channel>
</rss>

