<?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 for Android Development</title>
	<atom:link href="http://www.droidnova.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:50:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Create a scrollable Map with Cells &#8211; Part I by Simi</title>
		<link>http://www.droidnova.com/create-a-scrollable-map-with-cells-part-i,654.html/comment-page-1#comment-2550</link>
		<dc:creator>Simi</dc:creator>
		<pubDate>Sat, 04 Feb 2012 17:50:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=654#comment-2550</guid>
		<description>Hi I&#039;m trying to create a simple path finding app in android. I want to know how to implement A* algorithm in Android.</description>
		<content:encoded><![CDATA[<p>Hi I&#8217;m trying to create a simple path finding app in android. I want to know how to implement A* algorithm in Android.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D Tutorial Series &#8211; Part V by csaba</title>
		<link>http://www.droidnova.com/2d-tutorial-series-part-v,848.html/comment-page-1#comment-2549</link>
		<dc:creator>csaba</dc:creator>
		<pubDate>Sat, 04 Feb 2012 06:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=848#comment-2549</guid>
		<description>Thanks for the tutorial.

SurfaceHolder.lockCanvas() ... If you call this repeatedly when the Surface is not ready (before Callback.surfaceCreated or after Callback.surfaceDestroyed), your calls will be throttled to a slow rate in order to avoid consuming CPU. 

Could be some similar logic the cause for your FPS drop?</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial.</p>
<p>SurfaceHolder.lockCanvas() &#8230; If you call this repeatedly when the Surface is not ready (before Callback.surfaceCreated or after Callback.surfaceDestroyed), your calls will be throttled to a slow rate in order to avoid consuming CPU. </p>
<p>Could be some similar logic the cause for your FPS drop?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Playing with graphics in Android &#8211; Part I by don</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html/comment-page-2#comment-2548</link>
		<dc:creator>don</dc:creator>
		<pubDate>Fri, 03 Feb 2012 20:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=147#comment-2548</guid>
		<description>hey guys 
im thinking of making a game on android but my question is 
WHERE DO I GET THIS SOFTWARE THAT IS USED FOR WRITING THINGS</description>
		<content:encoded><![CDATA[<p>hey guys<br />
im thinking of making a game on android but my question is<br />
WHERE DO I GET THIS SOFTWARE THAT IS USED FOR WRITING THINGS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ever tried &#8216;localhost&#8217; with the android emulator ? by Misha Chandan</title>
		<link>http://www.droidnova.com/ever-tried-localhost-with-the-android-emulator,102.html/comment-page-1#comment-2547</link>
		<dc:creator>Misha Chandan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 16:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=102#comment-2547</guid>
		<description>Hey , its great to know &quot;10.0.2.2&quot;.</description>
		<content:encoded><![CDATA[<p>Hey , its great to know &#8220;10.0.2.2&#8243;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Sound Effects in Android: Part 1 by Paul</title>
		<link>http://www.droidnova.com/creating-sound-effects-in-android-part-1,570.html/comment-page-2#comment-2546</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Thu, 02 Feb 2012 02:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=570#comment-2546</guid>
		<description>Very handy, only change I had to do was add an integer cast to the line:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;mSoundPool.play(mSoundPoolMap.get(index), streamVolume, streamVolume, 1, 0, 1f);&lt;/pre&gt;
like so:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;mSoundPool.play((Integer) mSoundPoolMap.get(index), streamVolume, streamVolume, 1, 0, 1f);&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Very handy, only change I had to do was add an integer cast to the line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">mSoundPool.<span style="color: #006633;">play</span><span style="color: #009900;">&#40;</span>mSoundPoolMap.<span style="color: #006633;">get</span><span style="color: #009900;">&#40;</span>index<span style="color: #009900;">&#41;</span>, streamVolume, streamVolume, <span style="color: #cc66cc;">1</span>, <span style="color: #cc66cc;">0</span>, 1f<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">mSoundPool.<span style="color: #006633;">play</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">Integer</span><span style="color: #009900;">&#41;</span> mSoundPoolMap.<span style="color: #006633;">get</span><span style="color: #009900;">&#40;</span>index<span style="color: #009900;">&#41;</span>, streamVolume, streamVolume, <span style="color: #cc66cc;">1</span>, <span style="color: #cc66cc;">0</span>, 1f<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create an option menu by Zohar</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2545</link>
		<dc:creator>Zohar</dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2545</guid>
		<description>Thanks, very good tutorial !  :)</description>
		<content:encoded><![CDATA[<p>Thanks, very good tutorial !  <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android 3D game tutorial &#8211; Part VI by Ole</title>
		<link>http://www.droidnova.com/android-3d-game-tutorial-part-vi,436.html/comment-page-2#comment-2540</link>
		<dc:creator>Ole</dc:creator>
		<pubDate>Mon, 30 Jan 2012 14:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=436#comment-2540</guid>
		<description>Thanks Martin, I think it is, for this tutorial. I&#039;m new to Android, and here is weeks of studies.
And thanks to &quot;yokese&quot; for making things easy accesible.</description>
		<content:encoded><![CDATA[<p>Thanks Martin, I think it is, for this tutorial. I&#8217;m new to Android, and here is weeks of studies.<br />
And thanks to &#8220;yokese&#8221; for making things easy accesible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Game Menus in Android by Linh</title>
		<link>http://www.droidnova.com/creating-game-menus-in-android,518.html/comment-page-1#comment-2539</link>
		<dc:creator>Linh</dc:creator>
		<pubDate>Mon, 30 Jan 2012 10:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=518#comment-2539</guid>
		<description>thank you, your tutorial really helpful for me :)</description>
		<content:encoded><![CDATA[<p>thank you, your tutorial really helpful for me <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get the ip address of your device by kaung</title>
		<link>http://www.droidnova.com/get-the-ip-address-of-your-device,304.html/comment-page-2#comment-2538</link>
		<dc:creator>kaung</dc:creator>
		<pubDate>Mon, 30 Jan 2012 06:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=304#comment-2538</guid>
		<description>Thanks for your helpful answer. I ll learn more about IPV6. 
Thanks</description>
		<content:encoded><![CDATA[<p>Thanks for your helpful answer. I ll learn more about IPV6.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add contact photo to your list application by Zeeshan A Zakaria</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-2535</link>
		<dc:creator>Zeeshan A Zakaria</dc:creator>
		<pubDate>Sun, 29 Jan 2012 09:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-2535</guid>
		<description>Thanks for this tutorial. it finally solved my mystery of how to setup my own adapter so I can show images along with text.

However, as another reader mentioned, you probably forgot to point out that for your second tutorial to work, in the first tutorial one needs to change:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
myAdapter = new SimpleCursorAdapter(this, R.layout.main, cursor, columns, names);
&lt;/pre&gt;
to:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
myAdapter = new MySimpleCursorAdapter (this, R.layout.main, cursor, columns, names);
&lt;/pre&gt;

Thanks a lot for saving my time.</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial. it finally solved my mystery of how to setup my own adapter so I can show images along with text.</p>
<p>However, as another reader mentioned, you probably forgot to point out that for your second tutorial to work, in the first tutorial one needs to change:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">myAdapter <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> SimpleCursorAdapter<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span>, R.<span style="color: #006633;">layout</span>.<span style="color: #006633;">main</span>, cursor, columns, names<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>to:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">myAdapter <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> MySimpleCursorAdapter <span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span>, R.<span style="color: #006633;">layout</span>.<span style="color: #006633;">main</span>, cursor, columns, names<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Thanks a lot for saving my time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

