<?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: Create a scrollable Map with Cells &#8211; Part I</title>
	<atom:link href="http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Mon, 06 Sep 2010 15:34:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-1108</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 26 May 2010 19:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-1108</guid>
		<description>Thank you. Currently I use a play ArrayList where I just know the position on the map by dividing and modulo operation :)</description>
		<content:encoded><![CDATA[<p>Thank you. Currently I use a play ArrayList where I just know the position on the map by dividing and modulo operation <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasil Nonchev</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-1103</link>
		<dc:creator>Vasil Nonchev</dc:creator>
		<pubDate>Wed, 26 May 2010 11:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-1103</guid>
		<description>Great tutorial, Martin. 

My recommendation, however is if you don&#039;t want to use a two dimensional array for the map, as it may be dynamically changing, to use ArrayList&lt;ArrayList for it, as you&#039;ll need to get a lot of elements by index. You won&#039;t have to bother about indexing and moreover the HashMap isn&#039;t designed for this case - you don&#039;t get anything for the additional space it will require.</description>
		<content:encoded><![CDATA[<p>Great tutorial, Martin. </p>
<p>My recommendation, however is if you don&#8217;t want to use a two dimensional array for the map, as it may be dynamically changing, to use ArrayList&lt;ArrayList for it, as you&#8217;ll need to get a lot of elements by index. You won&#8217;t have to bother about indexing and moreover the HashMap isn&#8217;t designed for this case &#8211; you don&#8217;t get anything for the additional space it will require.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: makboney</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-1018</link>
		<dc:creator>makboney</dc:creator>
		<pubDate>Thu, 08 Apr 2010 04:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-1018</guid>
		<description>hey Martin...

thats a nice one...helped me a lot...

but could u please give some idea on custom map not google map...

thanks</description>
		<content:encoded><![CDATA[<p>hey Martin&#8230;</p>
<p>thats a nice one&#8230;helped me a lot&#8230;</p>
<p>but could u please give some idea on custom map not google map&#8230;</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-920</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-920</guid>
		<description>Amazing tutorial. I was looking for a good example using SurfaceView.</description>
		<content:encoded><![CDATA[<p>Amazing tutorial. I was looking for a good example using SurfaceView.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-871</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Sat, 06 Feb 2010 11:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-871</guid>
		<description>Whole background: Take a look at the onDraw method of this tutorial: http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html

To make it smoother is one topic on the next two parts.
I&#039;m in the final week in my current semester. Please give me the time :D</description>
		<content:encoded><![CDATA[<p>Whole background: Take a look at the onDraw method of this tutorial: <a href="http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html" rel="nofollow">http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html</a></p>
<p>To make it smoother is one topic on the next two parts.<br />
I&#8217;m in the final week in my current semester. Please give me the time <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-869</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Fri, 05 Feb 2010 23:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-869</guid>
		<description>Hi Martin!

Very nice tutorial, this helped me a lot! Keep the good work up!

Can&#039;t wait to next one but i need some help.. pretty new to this! How do you implement a whole background? Or do you need to it for every cell?
And any tips before the next tutorial, how to do it smoother?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Martin!</p>
<p>Very nice tutorial, this helped me a lot! Keep the good work up!</p>
<p>Can&#8217;t wait to next one but i need some help.. pretty new to this! How do you implement a whole background? Or do you need to it for every cell?<br />
And any tips before the next tutorial, how to do it smoother?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-817</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 26 Jan 2010 07:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-817</guid>
		<description>Hi Martin, 

very nice and useful tutorial. Although rendering the complete scene, this is very useful. Can&#039;t wait for the next tutorial part, showing of how to do with 200x200 cells ;)

Just mail me, if you&#039;re going to do so! ;)</description>
		<content:encoded><![CDATA[<p>Hi Martin, </p>
<p>very nice and useful tutorial. Although rendering the complete scene, this is very useful. Can&#8217;t wait for the next tutorial part, showing of how to do with 200&#215;200 cells <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just mail me, if you&#8217;re going to do so! <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-791</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Sun, 17 Jan 2010 19:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-791</guid>
		<description>Hey,

your right, my conventions are from the j2ee projects where I learned Java. We had Checkstyle installed to check that every variable has its prefix _ :)
Currently I &quot;learn&quot; to use the m prefix, which is defined by the Android Style Guide.</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>your right, my conventions are from the j2ee projects where I learned Java. We had Checkstyle installed to check that every variable has its prefix _ <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Currently I &#8220;learn&#8221; to use the m prefix, which is defined by the Android Style Guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zlaire</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-790</link>
		<dc:creator>Zlaire</dc:creator>
		<pubDate>Sun, 17 Jan 2010 18:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-790</guid>
		<description>Just a friendly reflection. You name class-variables starting with _. E.g. _isMoving in this example.

This is probably needlessly confusing to beginners, looks kinda ugly to be honest, and more importantly goes against Java&#039;s naming convention. The following comes straight from the official site:

&quot;Variable names should not start with underscore _ or dollar sign $ characters, even though both are allowed.&quot;

It&#039;s probably just a bad habit, but habits are made to be broken. :)</description>
		<content:encoded><![CDATA[<p>Just a friendly reflection. You name class-variables starting with _. E.g. _isMoving in this example.</p>
<p>This is probably needlessly confusing to beginners, looks kinda ugly to be honest, and more importantly goes against Java&#8217;s naming convention. The following comes straight from the official site:</p>
<p>&#8220;Variable names should not start with underscore _ or dollar sign $ characters, even though both are allowed.&#8221;</p>
<p>It&#8217;s probably just a bad habit, but habits are made to be broken. <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-789</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Sat, 16 Jan 2010 23:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-789</guid>
		<description>This will be a topic in the next step. I&#039;m currently at the end of my semester so its time for project releases and exams. I promise to post more in the future.</description>
		<content:encoded><![CDATA[<p>This will be a topic in the next step. I&#8217;m currently at the end of my semester so its time for project releases and exams. I promise to post more in the future.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->