<?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: Android: Hello Circle</title>
	<atom:link href="http://www.kellbot.com/2009/06/android-hello-circle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kellbot.com/2009/06/android-hello-circle/</link>
	<description>Tinysaurs and Hacking and Nonsense</description>
	<lastBuildDate>Mon, 07 May 2012 11:42:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Manjeet Singh Goyal</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-41730</link>
		<dc:creator>Manjeet Singh Goyal</dc:creator>
		<pubDate>Fri, 04 May 2012 06:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-41730</guid>
		<description>Thank for posting this simple and lovely code. but i have one question how to erase the ploated point is it possible to making an array of ploating point.
Thanks............ :)</description>
		<content:encoded><![CDATA[<p>Thank for posting this simple and lovely code. but i have one question how to erase the ploated point is it possible to making an array of ploating point.<br />
Thanks&#8230;&#8230;&#8230;&#8230; <img src='http://www.kellbot.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikki</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-38787</link>
		<dc:creator>Nikki</dc:creator>
		<pubDate>Sun, 01 Apr 2012 21:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-38787</guid>
		<description>Great tutorial, thanks!

I have a similar question to those above...is there a way to keep track of the each ball, so you can make them clickable?</description>
		<content:encoded><![CDATA[<p>Great tutorial, thanks!</p>
<p>I have a similar question to those above&#8230;is there a way to keep track of the each ball, so you can make them clickable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elbon</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-38376</link>
		<dc:creator>Elbon</dc:creator>
		<pubDate>Wed, 28 Mar 2012 17:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-38376</guid>
		<description>Thanks for this, it surprisingly hard to find a good simple tutorial on touch for the android</description>
		<content:encoded><![CDATA[<p>Thanks for this, it surprisingly hard to find a good simple tutorial on touch for the android</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: driss</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-37840</link>
		<dc:creator>driss</dc:creator>
		<pubDate>Wed, 21 Mar 2012 10:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-37840</guid>
		<description>great tutto 
for last versions replace getParent()  with the getContext()</description>
		<content:encoded><![CDATA[<p>great tutto<br />
for last versions replace getParent()  with the getContext()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sowmya</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-36936</link>
		<dc:creator>sowmya</dc:creator>
		<pubDate>Sun, 11 Mar 2012 11:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-36936</guid>
		<description>hi,

I am getting an error at this line &quot;FrameLayout main = (FrameLayout) findViewById(R.id.main_view);&quot; It says FrameLayout cannot be resolved to a type. Can anyone help me out of this ?</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I am getting an error at this line &#8220;FrameLayout main = (FrameLayout) findViewById(R.id.main_view);&#8221; It says FrameLayout cannot be resolved to a type. Can anyone help me out of this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ABC</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-36834</link>
		<dc:creator>ABC</dc:creator>
		<pubDate>Fri, 09 Mar 2012 17:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-36834</guid>
		<description>This is the working code with 4.03. Ball.java and main.xml were ok

package hello.tasdf;

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.FrameLayout;

public class HelloActivity extends Activity {
    /** Called when the activity is first created. */
        
        @Override
        public void onCreate(Bundle savedInstanceState) {
           super.onCreate(savedInstanceState);
           setContentView(R.layout.main);
           FrameLayout main = (FrameLayout) findViewById(R.id.main_view);
           main.addView(new Ball(this,50,50,25));
           
           main.addView(new Ball(this,50,50,25));
           

          
          main.setOnTouchListener(new View.OnTouchListener() {
               public boolean onTouch(View v, MotionEvent e) {
                   float x = e.getX();
           	float y = e.getY();
                   FrameLayout flView = (FrameLayout) v;
           	flView.addView(new Ball(flView.getContext(), x,y,25));
               return true;}
           });
    }
}</description>
		<content:encoded><![CDATA[<p>This is the working code with 4.03. Ball.java and main.xml were ok</p>
<p>package hello.tasdf;</p>
<p>import android.app.Activity;<br />
import android.os.Bundle;<br />
import android.view.MotionEvent;<br />
import android.view.View;<br />
import android.widget.FrameLayout;</p>
<p>public class HelloActivity extends Activity {<br />
    /** Called when the activity is first created. */</p>
<p>        @Override<br />
        public void onCreate(Bundle savedInstanceState) {<br />
           super.onCreate(savedInstanceState);<br />
           setContentView(R.layout.main);<br />
           FrameLayout main = (FrameLayout) findViewById(R.id.main_view);<br />
           main.addView(new Ball(this,50,50,25));</p>
<p>           main.addView(new Ball(this,50,50,25));</p>
<p>          main.setOnTouchListener(new View.OnTouchListener() {<br />
               public boolean onTouch(View v, MotionEvent e) {<br />
                   float x = e.getX();<br />
           	float y = e.getY();<br />
                   FrameLayout flView = (FrameLayout) v;<br />
           	flView.addView(new Ball(flView.getContext(), x,y,25));<br />
               return true;}<br />
           });<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanu</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-36713</link>
		<dc:creator>tanu</dc:creator>
		<pubDate>Thu, 08 Mar 2012 06:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-36713</guid>
		<description>its a great tutorial.but while i run the program the ball show on the screen.but when i touch the ball an error occour with notification is&quot;The application RoboTown (process com.robo.town)has stopped unexpectedly.please try again&quot;</description>
		<content:encoded><![CDATA[<p>its a great tutorial.but while i run the program the ball show on the screen.but when i touch the ball an error occour with notification is&#8221;The application RoboTown (process com.robo.town)has stopped unexpectedly.please try again&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PIYUSH</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-36266</link>
		<dc:creator>PIYUSH</dc:creator>
		<pubDate>Fri, 02 Mar 2012 12:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-36266</guid>
		<description>hi,
Can u darw polygon/boundary for particular city</description>
		<content:encoded><![CDATA[<p>hi,<br />
Can u darw polygon/boundary for particular city</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruchi</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-35929</link>
		<dc:creator>Ruchi</dc:creator>
		<pubDate>Tue, 28 Feb 2012 08:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-35929</guid>
		<description>Hey its really nice tutorial with clear ideas.
I need some help. Can you please tell me the way to access the coordinates of the center of the circle and edge of the circle.
I want to create pie chart. 
Thank you. :)</description>
		<content:encoded><![CDATA[<p>Hey its really nice tutorial with clear ideas.<br />
I need some help. Can you please tell me the way to access the coordinates of the center of the circle and edge of the circle.<br />
I want to create pie chart.<br />
Thank you. <img src='http://www.kellbot.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://www.kellbot.com/2009/06/android-hello-circle/comment-page-2/#comment-35604</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Thu, 23 Feb 2012 19:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.kellbot.com/?p=347#comment-35604</guid>
		<description>For me, getParent() is returning null causing a NullPointerException.  I should mention that I&#039;m using SDK 4.0.3</description>
		<content:encoded><![CDATA[<p>For me, getParent() is returning null causing a NullPointerException.  I should mention that I&#8217;m using SDK 4.0.3</p>
]]></content:encoded>
	</item>
</channel>
</rss>

