<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Happy New Years, Simple pattern for opening an Android Activity</title>
	<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/</link>
	<description>My eclectic journey into the blogosphere</description>
	<pubDate>Fri, 18 May 2012 19:16:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: Kevin Dahlhausen</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-784</link>
		<dc:creator>Kevin Dahlhausen</dc:creator>
		<pubDate>Sat, 08 Jan 2011 01:12:06 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-784</guid>
		<description>Thanks  - I like your idea a lot.  Will refactor my code to try it out.</description>
		<content:encoded><![CDATA[<p>Thanks  - I like your idea a lot.  Will refactor my code to try it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kontantinos Polychronis - Simple pattern for opening an Android Activity &#8211; Κωνσταντίνος Πολυχρόνης</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-783</link>
		<dc:creator>Kontantinos Polychronis - Simple pattern for opening an Android Activity &#8211; Κωνσταντίνος Πολυχρόνης</dc:creator>
		<pubDate>Tue, 04 Jan 2011 09:25:31 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-783</guid>
		<description>[...] posted a great article titled: Simple pattern for opening an Android [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] posted a great article titled: Simple pattern for opening an Android [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-782</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Mon, 03 Jan 2011 23:35:20 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-782</guid>
		<description>It's not true to say it's only useful for an Activity that's not shared. There's no reason why it this pattern cannot be used anyway.  Using this pattern makes no difference to outside users of the app -- they just have to use the normal Intent mechanism rather than this static method.

This is just a convenience for when the Activity *is* launched from within the same app.</description>
		<content:encoded><![CDATA[<p>It&#8217;s not true to say it&#8217;s only useful for an Activity that&#8217;s not shared. There&#8217;s no reason why it this pattern cannot be used anyway.  Using this pattern makes no difference to outside users of the app &#8212; they just have to use the normal Intent mechanism rather than this static method.</p>
<p>This is just a convenience for when the Activity *is* launched from within the same app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-780</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Sun, 02 Jan 2011 16:47:04 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-780</guid>
		<description>Good point Davy, the project I've started using this on is with a number of different devs and a large number of screens/activities, so yes it is meant for calls within the same Android App.</description>
		<content:encoded><![CDATA[<p>Good point Davy, the project I&#8217;ve started using this on is with a number of different devs and a large number of screens/activities, so yes it is meant for calls within the same Android App.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davy</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-779</link>
		<dc:creator>Davy</dc:creator>
		<pubDate>Sun, 02 Jan 2011 12:37:07 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-779</guid>
		<description>Your "simple pattern" is only useful for an Activity that you don't share with other applications.
The main goal of the Activity is beeing created by everyone and not only by your application.

So, it's important to specify that this pattern is only useful for the developer of THIS app.</description>
		<content:encoded><![CDATA[<p>Your &#8220;simple pattern&#8221; is only useful for an Activity that you don&#8217;t share with other applications.<br />
The main goal of the Activity is beeing created by everyone and not only by your application.</p>
<p>So, it&#8217;s important to specify that this pattern is only useful for the developer of THIS app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-778</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Sun, 02 Jan 2011 05:23:18 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-778</guid>
		<description>Actually, I messed up there, in my haste to publish I forgot one of the most important lines (just updated), the line startActivity creates the instance of ActivityOne then onCreate is called.  I don't want to the values _value1 and _value2 to be static because I want them to be set for each instance of ActivityOne.</description>
		<content:encoded><![CDATA[<p>Actually, I messed up there, in my haste to publish I forgot one of the most important lines (just updated), the line startActivity creates the instance of ActivityOne then onCreate is called.  I don&#8217;t want to the values _value1 and _value2 to be static because I want them to be set for each instance of ActivityOne.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-777</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Sun, 02 Jan 2011 03:22:27 +0000</pubDate>
		<guid>http://mgmblog.com/2011/01/01/happy-new-years-simple-pattern-for-opening-an-android-activity/#comment-777</guid>
		<description>If you're already accessing the class in a static way, why not just set val1 and val2 at the same time?
I think this would increase performance and memory and save yourself a line or two of code.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re already accessing the class in a static way, why not just set val1 and val2 at the same time?<br />
I think this would increase performance and memory and save yourself a line or two of code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

