<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Android Research Blog</title>
	<atom:link href="http://androidresearch.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://androidresearch.wordpress.com</link>
	<description>A blog about my findings, tutorials, and researches related to Android Application Development.</description>
	<lastBuildDate>Thu, 16 May 2013 13:15:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Integrating Google Analytics SDK (V2) with Android by Plattformlifte Beratung</title>
		<link>http://androidresearch.wordpress.com/2012/11/03/integrating-google-analytics-sdk-v2-with-android/#comment-1420</link>
		<dc:creator><![CDATA[Plattformlifte Beratung]]></dc:creator>
		<pubDate>Thu, 16 May 2013 13:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=565#comment-1420</guid>
		<description><![CDATA[Hurrah! Finally I got a website from where I know how to really obtain useful data concerning my 
study and knowledge.]]></description>
		<content:encoded><![CDATA[<p>Hurrah! Finally I got a website from where I know how to really obtain useful data concerning my<br />
study and knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with AsyncTask and Screen Orientation by Understanding AsyncTask &#8211; Once and Forever &#124; Android Research Blog</title>
		<link>http://androidresearch.wordpress.com/2013/05/10/dealing-with-asynctask-and-screen-orientation/#comment-1402</link>
		<dc:creator><![CDATA[Understanding AsyncTask &#8211; Once and Forever &#124; Android Research Blog]]></dc:creator>
		<pubDate>Sun, 12 May 2013 19:17:22 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=693#comment-1402</guid>
		<description><![CDATA[[&#8230;] will have no effect on the new Activity. How to handle this sort of issues is described in: Dealing with AsyncTask and Screen Orientation, which I highly recommend reading it if you are concerned to deliver stable Android [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] will have no effect on the new Activity. How to handle this sort of issues is described in: Dealing with AsyncTask and Screen Orientation, which I highly recommend reading it if you are concerned to deliver stable Android [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working With Services In Android &#8211; IntentService by Dealing with AsyncTask and Screen Orientation &#124; Android Research Blog</title>
		<link>http://androidresearch.wordpress.com/2012/03/04/working-with-services-in-android-intentservice/#comment-1397</link>
		<dc:creator><![CDATA[Dealing with AsyncTask and Screen Orientation &#124; Android Research Blog]]></dc:creator>
		<pubDate>Sat, 11 May 2013 11:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=255#comment-1397</guid>
		<description><![CDATA[[&#8230;] some complexity. For things like making HTTP requests to a server perhaps you should consider an IntentService. IntentService used in conjunction with a BroadcastReceiver or ResultReceiver to deliver results, [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] some complexity. For things like making HTTP requests to a server perhaps you should consider an IntentService. IntentService used in conjunction with a BroadcastReceiver or ResultReceiver to deliver results, [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integrating Google Analytics SDK (V2) with Android by Laurence</title>
		<link>http://androidresearch.wordpress.com/2012/11/03/integrating-google-analytics-sdk-v2-with-android/#comment-1395</link>
		<dc:creator><![CDATA[Laurence]]></dc:creator>
		<pubDate>Sat, 11 May 2013 08:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=565#comment-1395</guid>
		<description><![CDATA[I read this paragraph completely on the topic of 
the resemblance of hottest and earlier technologies, 
it&#039;s awesome article.]]></description>
		<content:encoded><![CDATA[<p>I read this paragraph completely on the topic of<br />
the resemblance of hottest and earlier technologies,<br />
it&#8217;s awesome article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with AsyncTask and Screen Orientation by Charles Munger</title>
		<link>http://androidresearch.wordpress.com/2013/05/10/dealing-with-asynctask-and-screen-orientation/#comment-1394</link>
		<dc:creator><![CDATA[Charles Munger]]></dc:creator>
		<pubDate>Sat, 11 May 2013 06:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=693#comment-1394</guid>
		<description><![CDATA[Not a fan - the real solution is to adjust what you&#039;re using AsyncTasks for, vs an IntentService. 

Using fragments is an OK solution, but AsyncTask is grossly overused in most android applications. Instead, use an IntentService or a Loader, depending on the circumstance. 

IntentServices+Loaders are superior to AsyncTasks in a few important ways: 

1. AsyncTasks are bound to the process of their activity. Non-foreground activities are considered to be cached, meaning they can be killed at any time. If you care about your asynchronous task completing regardless of the activity&#039;s state, use an IntentService. POSTs are a good example. 

2. For instances where you don&#039;t care about the result of an AsyncTask if the activity is destroyed, you still shouldn&#039;t use them - Loaders do a much better job of cancelling requests and managing resources, and are more concise. Downloading and showing images from a web service is a good example.]]></description>
		<content:encoded><![CDATA[<p>Not a fan &#8211; the real solution is to adjust what you&#8217;re using AsyncTasks for, vs an IntentService. </p>
<p>Using fragments is an OK solution, but AsyncTask is grossly overused in most android applications. Instead, use an IntentService or a Loader, depending on the circumstance. </p>
<p>IntentServices+Loaders are superior to AsyncTasks in a few important ways: </p>
<p>1. AsyncTasks are bound to the process of their activity. Non-foreground activities are considered to be cached, meaning they can be killed at any time. If you care about your asynchronous task completing regardless of the activity&#8217;s state, use an IntentService. POSTs are a good example. </p>
<p>2. For instances where you don&#8217;t care about the result of an AsyncTask if the activity is destroyed, you still shouldn&#8217;t use them &#8211; Loaders do a much better job of cancelling requests and managing resources, and are more concise. Downloading and showing images from a web service is a good example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android &#8211; Scheduling an application to start later. by luke_fernandez (@luke_fernandez)</title>
		<link>http://androidresearch.wordpress.com/2012/07/02/scheduling-an-application-to-start-later/#comment-1393</link>
		<dc:creator><![CDATA[luke_fernandez (@luke_fernandez)]]></dc:creator>
		<pubDate>Sat, 11 May 2013 03:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=535#comment-1393</guid>
		<description><![CDATA[Very nice demo.  I tried a few other demos before this one and this is the only one that worked.]]></description>
		<content:encoded><![CDATA[<p>Very nice demo.  I tried a few other demos before this one and this is the only one that worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a simple Gesture Application in Android by Hrishitha</title>
		<link>http://androidresearch.wordpress.com/2012/01/10/working-with-gesture-api-in-android/#comment-1389</link>
		<dc:creator><![CDATA[Hrishitha]]></dc:creator>
		<pubDate>Thu, 09 May 2013 05:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=124#comment-1389</guid>
		<description><![CDATA[Thank you.NIce tutorial and it is vey helpful for handwrite recognization app.]]></description>
		<content:encoded><![CDATA[<p>Thank you.NIce tutorial and it is vey helpful for handwrite recognization app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android &#8211; Detecting Internet Connection by ElGranj</title>
		<link>http://androidresearch.wordpress.com/2012/01/06/android-detecting-internet-connection/#comment-1385</link>
		<dc:creator><![CDATA[ElGranj]]></dc:creator>
		<pubDate>Wed, 08 May 2013 14:56:41 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=4#comment-1385</guid>
		<description><![CDATA[Thanks for this tutorial!

Is just what I needed for my project.

Cheers!]]></description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial!</p>
<p>Is just what I needed for my project.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a simple Gesture Application in Android by eliza</title>
		<link>http://androidresearch.wordpress.com/2012/01/10/working-with-gesture-api-in-android/#comment-1376</link>
		<dc:creator><![CDATA[eliza]]></dc:creator>
		<pubDate>Mon, 06 May 2013 14:03:19 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=124#comment-1376</guid>
		<description><![CDATA[do you have video.. i try it but i dont seee the main.xml.. where could i find that
thanks]]></description>
		<content:encoded><![CDATA[<p>do you have video.. i try it but i dont seee the main.xml.. where could i find that<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integrating Google Analytics SDK (V2) with Android by jackones</title>
		<link>http://androidresearch.wordpress.com/2012/11/03/integrating-google-analytics-sdk-v2-with-android/#comment-1366</link>
		<dc:creator><![CDATA[jackones]]></dc:creator>
		<pubDate>Fri, 03 May 2013 15:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://androidresearch.wordpress.com/?p=565#comment-1366</guid>
		<description><![CDATA[Thanks!
But this is necessary? --&gt; 30]]></description>
		<content:encoded><![CDATA[<p>Thanks!<br />
But this is necessary? &#8211;&gt; 30</p>
]]></content:encoded>
	</item>
</channel>
</rss>
