<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Qué Sucede - Software, the web, marketing and design - Latest Comments in Google Android tutorial - Conway's Game of Life</title><link>http://quesucede.disqus.com/</link><description></description><atom:link href="https://quesucede.disqus.com/google_android_tutorial_conways_game_of_life/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 26 Oct 2012 06:46:58 -0000</lastBuildDate><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-692805846</link><description>&lt;p&gt;Thanks a million this is really easy to follow - I'm not a TOTAL noob at programming but find learning new frameworks can be a bit of a challenge. You made it very easy to follow, allowing me to make it my own and customise etc&lt;/p&gt;&lt;p&gt;Anyway thanks :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jack Fitzsimons</dc:creator><pubDate>Fri, 26 Oct 2012 06:46:58 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-592628992</link><description>&lt;p&gt;Google Android is new to me. As I read this article, it seems that there are many things you can do in here. Good that you share it and to help us to know it. Thanks for this post.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Android Applications</dc:creator><pubDate>Thu, 19 Jul 2012 20:56:18 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-171610675</link><description>&lt;p&gt;I never get past the "application has stopped unexpectedly error." Any ideas on what would cause it? Tried 3 times recreating this project. Happens every single time. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wfilla</dc:creator><pubDate>Fri, 25 Mar 2011 10:16:59 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-171246737</link><description>&lt;p&gt;I never get past "Day3" because of the error about the application stopping unexpectedly. Any ideas? &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wfilla</dc:creator><pubDate>Thu, 24 Mar 2011 16:35:09 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-139444081</link><description>&lt;p&gt;Hi lol,&lt;/p&gt;&lt;p&gt;You're right, specifically the first part of the tutorial is based on the book "Hello Android" from the Pragmatic Programmers. I explicitly acknowledge that fact in a comment, just below the end of the first part of the tutorial: "I've based a lot of the code in the initial part of this tutorial on what I am reading from the book Hello, Android - Introducing Google's Mobile Development Platform, from The Pragmatic Programmers." Said acknowledgement has been there since I published the tutorial. However, the second part of the tutorial is completely unrelated to before-mentioned book and unique to my own learning experience.&lt;/p&gt;&lt;p&gt;But thanks for the comment, anyway.&lt;/p&gt;&lt;p&gt;Brett&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Thu, 03 Feb 2011 05:18:00 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-139100234</link><description>&lt;p&gt;Nice copy paste from one of the most famose android BOOKs on the market...lol&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Iol</dc:creator><pubDate>Wed, 02 Feb 2011 19:49:02 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-134008726</link><description>&lt;p&gt;0 down vote favorite&lt;/p&gt;&lt;p&gt;I guess this is just a simple question (I’m such a noob…) I have this custom dialog box that has 3 buttons in it.&lt;/p&gt;&lt;p&gt;Now I want to call an activity from one of the buttons so I tried this:&lt;br&gt;[code]&lt;br&gt;public class picturedialog extends Dialog implements OnClickListener {&lt;br&gt;    Button Camera;&lt;/p&gt;&lt;p&gt;    public picturedialog (Context context){&lt;br&gt;        super (context);&lt;br&gt;        setContentView(R.layout.picturedialog);&lt;/p&gt;&lt;p&gt;        Camera = (Button) this.findViewById(R.id.pdButton1);&lt;/p&gt;&lt;p&gt;        Camera.setOnClickListener(new View.OnClickListener() {&lt;br&gt;            public void onClick(View view) {&lt;br&gt;                dismiss();&lt;/p&gt;&lt;p&gt;                Intent myIntent = new Intent(view.getContext(), CameraActivity.class);&lt;br&gt;                startActivity(myIntent);&lt;/p&gt;&lt;p&gt;            }&lt;br&gt;        });&lt;br&gt;...&lt;br&gt;}[/code]&lt;/p&gt;&lt;p&gt;Then the red squiggly line appears on startActivity(myIntent). Upon hovering on it, eclipse tells me this: “The method startActivity(Intent) is undefined for the type new View.OnClickListener(){}” Ehhh? Please orient me on how to do this properly. Any help would be appreciated.&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">hyunjungsoh</dc:creator><pubDate>Mon, 24 Jan 2011 15:11:59 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-128651575</link><description>&lt;p&gt;This is excellent. I'm just starting out with Android &amp;amp; Java (after 20+ years of asm, C, C++ &amp;amp; C#) and this is a fantastic introduction. Many thanks for sharing!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rick</dc:creator><pubDate>Thu, 13 Jan 2011 10:54:35 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-128091963</link><description>&lt;p&gt;I am beginner for android.. this tutorial is very easy to learn... I like this very much.. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Vinoth</dc:creator><pubDate>Wed, 12 Jan 2011 02:55:10 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-124604191</link><description>&lt;p&gt;Thanks for the tutorial, this is amazing!  However I'm having a problem, after creating the colors.xml file in the values folder it keeps moving the strings.xml out of the value folder and won't let put it back in. Help please?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Travis</dc:creator><pubDate>Wed, 05 Jan 2011 16:41:58 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-96475651</link><description>&lt;p&gt;this is awesomeeeeee .... plz plz plz upload more of these ..... :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joy</dc:creator><pubDate>Fri, 12 Nov 2010 04:39:43 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-89459058</link><description>&lt;p&gt;Bloody fantastic tutorial! Excellent explanations every step of the way. I hope to see more from you!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sub</dc:creator><pubDate>Sat, 23 Oct 2010 12:37:43 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-88932279</link><description>&lt;p&gt;can I do something that Dialog appearing on About button, has Close button?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Varandtin</dc:creator><pubDate>Thu, 21 Oct 2010 19:12:40 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-87793035</link><description>&lt;p&gt;how to exit in multiple intent&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arulselvam</dc:creator><pubDate>Mon, 18 Oct 2010 02:07:21 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-70764676</link><description>&lt;p&gt;Likewise... thanks for your kind words. Again, knowing that the tutorial has been useful makes the time spent on it worth while. &lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Brett&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Mon, 23 Aug 2010 09:29:15 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-70764384</link><description>&lt;p&gt;Glad you enjoyed the tutorial, Codecoaster. As I learn new stuff, I will be writing more. Knowing that it is appreciated makes it worth the while.&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Brett&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Mon, 23 Aug 2010 09:27:42 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-69055266</link><description>&lt;p&gt;Best tutorial to understand the basics instead of going through the long tutorial at google site. Kudos to you man. Thank you very much for sharing. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xyz</dc:creator><pubDate>Sun, 15 Aug 2010 21:32:32 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-61556712</link><description>&lt;p&gt;Codecoaster,&lt;/p&gt;&lt;p&gt;Thanks for your kind words... feedback like this really encourages me to continue with the third part of the tutorial.&lt;/p&gt;&lt;p&gt;Brett&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Sun, 11 Jul 2010 09:41:50 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-61484772</link><description>&lt;p&gt;best android tutorial I've seen so far!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Codecoaster</dc:creator><pubDate>Sat, 10 Jul 2010 18:26:29 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-58304463</link><description>&lt;p&gt;Hi Girish601,&lt;/p&gt;&lt;p&gt;On the home screen, press the Menu button, followed by selecting Wallpaper... a dialog box appears asking you to select either a live wallpaper, picture, or (static) wallpaper.&lt;/p&gt;&lt;p&gt;Brett &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Wed, 23 Jun 2010 16:15:36 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-58190750</link><description>&lt;p&gt;Hi &lt;br&gt;It was a good tutorial.&lt;br&gt;But i wanted to know, how did you changed the emulator screens.(Emulator Screen no.2)&lt;br&gt;I liked it, can you tell more on that&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Girish601</dc:creator><pubDate>Wed, 23 Jun 2010 03:52:11 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-55013590</link><description>&lt;p&gt;Hi Jonathan,&lt;br&gt;&lt;br&gt;I'm going to implement Conway's Game of Life in Flex 4... when it's finished, it will obviously deploy it on to my site. Thanks for your interest.&lt;br&gt;&lt;br&gt;Brett&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">brettkromkamp</dc:creator><pubDate>Sun, 06 Jun 2010 11:37:06 -0000</pubDate></item><item><title>Re: Google Android tutorial - Conway's Game of Life</title><link>http://www.quesucede.com/page/show/id/conway_game_of_life_android#comment-54952997</link><description>&lt;p&gt;Be really neat if you had a little mini-demo of life running on the home screen.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jonathan</dc:creator><pubDate>Sat, 05 Jun 2010 21:44:40 -0000</pubDate></item></channel></rss>