<?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 Development Demo: &#8220;DialANumber&#8221; &#8211; How to write your own very first Android program &#8211; Made Simple!</title>
	<atom:link href="http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/</link>
	<description>Applications made for Android</description>
	<lastBuildDate>Fri, 27 Aug 2010 12:20:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: naresh</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-12604</link>
		<dc:creator>naresh</dc:creator>
		<pubDate>Fri, 27 Aug 2010 09:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-12604</guid>
		<description>Hi, i just tried your piece of code and when i push the button “DIAL” the call doesn’t start.
In the console windows i got following message in last line 
[2010-08-27 14:39:12 - AndroidProject] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.cube/.AndroidProject }
 
What ’s wrong?</description>
		<content:encoded><![CDATA[<p>Hi, i just tried your piece of code and when i push the button “DIAL” the call doesn’t start.<br />
In the console windows i got following message in last line<br />
[2010-08-27 14:39:12 - AndroidProject] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.cube/.AndroidProject }</p>
<p>What ’s wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dharmin</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-11939</link>
		<dc:creator>Dharmin</dc:creator>
		<pubDate>Fri, 13 Aug 2010 01:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-11939</guid>
		<description>Thanks a lot!! Searched for this all day...</description>
		<content:encoded><![CDATA[<p>Thanks a lot!! Searched for this all day&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Doerrie</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-10250</link>
		<dc:creator>Michael Doerrie</dc:creator>
		<pubDate>Mon, 14 Jun 2010 23:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-10250</guid>
		<description>If you want to be able to dial MMI/USSD codes from this script, you will need to make the following changes.

First add these permissions to the android manifest:
android.permission.CALL_PHONE
android.permission.CALL_PRIVILEGED android.permission.MODIFY_PHONE_STATE

and alter the dialing line to Uri encode &quot;#&quot; and &quot;*&quot; characters.

Change this line:

startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(&quot;tel:&quot; + mEditText_number.getText())));

to:

startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(&quot;tel:&quot; + Uri.encode(mEditText_number.getText().toString()))));

I hope that helps anyone trying to send MMI/USSD codes.</description>
		<content:encoded><![CDATA[<p>If you want to be able to dial MMI/USSD codes from this script, you will need to make the following changes.</p>
<p>First add these permissions to the android manifest:<br />
android.permission.CALL_PHONE<br />
android.permission.CALL_PRIVILEGED android.permission.MODIFY_PHONE_STATE</p>
<p>and alter the dialing line to Uri encode &#8220;#&#8221; and &#8220;*&#8221; characters.</p>
<p>Change this line:</p>
<p>startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(&#8220;tel:&#8221; + mEditText_number.getText())));</p>
<p>to:</p>
<p>startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(&#8220;tel:&#8221; + Uri.encode(mEditText_number.getText().toString()))));</p>
<p>I hope that helps anyone trying to send MMI/USSD codes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henrik Olsson</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-10050</link>
		<dc:creator>Henrik Olsson</dc:creator>
		<pubDate>Tue, 08 Jun 2010 06:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-10050</guid>
		<description>For those of you, who have trouble geting it to actually dial.
What is missing is that you need to add a permission in the AndroidManifest.xml

add this code to the manifest, at the end, right before 



you can also click the Permissions tab, click the button Add, then in the namelist choose, android.permission.CALL_PHONE and the code will get added in the manifest.

this shuld make your appication call the number enterd.</description>
		<content:encoded><![CDATA[<p>For those of you, who have trouble geting it to actually dial.<br />
What is missing is that you need to add a permission in the AndroidManifest.xml</p>
<p>add this code to the manifest, at the end, right before </p>
<p>you can also click the Permissions tab, click the button Add, then in the namelist choose, android.permission.CALL_PHONE and the code will get added in the manifest.</p>
<p>this shuld make your appication call the number enterd.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-8956</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Fri, 16 Apr 2010 05:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-8956</guid>
		<description>hi 

how to build the gprs app in mobile android OS please reply me as fast as possible.</description>
		<content:encoded><![CDATA[<p>hi </p>
<p>how to build the gprs app in mobile android OS please reply me as fast as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devi</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-8955</link>
		<dc:creator>devi</dc:creator>
		<pubDate>Fri, 16 Apr 2010 05:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-8955</guid>
		<description>hi we are doing project on beagle board we ported android OS on it we connected  LCD to the s-video of beagle board after porting android OS on it on lCD we got icons like contacts, brouser,etc but when connected my gprs modem to the beagle board it is not responding for that there will be one application is there my question is

how we build the gprs app in mobile android OS please reply me as fast as possible.</description>
		<content:encoded><![CDATA[<p>hi we are doing project on beagle board we ported android OS on it we connected  LCD to the s-video of beagle board after porting android OS on it on lCD we got icons like contacts, brouser,etc but when connected my gprs modem to the beagle board it is not responding for that there will be one application is there my question is</p>
<p>how we build the gprs app in mobile android OS please reply me as fast as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-8613</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Thu, 25 Mar 2010 20:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-8613</guid>
		<description>Google Dialer Demo 
http://www.youtube.com/watch?v=I6ObTqIiYfE</description>
		<content:encoded><![CDATA[<p>Google Dialer Demo<br />
<a href="http://www.youtube.com/watch?v=I6ObTqIiYfE" rel="nofollow">http://www.youtube.com/watch?v=I6ObTqIiYfE</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-8612</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Thu, 25 Mar 2010 20:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-8612</guid>
		<description>To all those having issues with this demo app... take a look at this video from Google .. they explain how to do this in a few lines of code.</description>
		<content:encoded><![CDATA[<p>To all those having issues with this demo app&#8230; take a look at this video from Google .. they explain how to do this in a few lines of code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: somy</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-6808</link>
		<dc:creator>somy</dc:creator>
		<pubDate>Thu, 21 Jan 2010 05:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-6808</guid>
		<description>sir,
     i try to workout the code,but it&#039;s not working after clicking the dial button.i am new in the android platform.can you please suggest a text for refer &#039;android&#039; .can u please give suggestion through mail.  Thanks.</description>
		<content:encoded><![CDATA[<p>sir,<br />
     i try to workout the code,but it&#8217;s not working after clicking the dial button.i am new in the android platform.can you please suggest a text for refer &#8216;android&#8217; .can u please give suggestion through mail.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/comment-page-1/#comment-6803</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 21 Jan 2010 00:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.androiddevelopment.org/2008/10/21/android-development-demo-dialanumber-how-to-write-your-own-very-first-android-program-made-simple/#comment-6803</guid>
		<description>Hey,

Thanks for the code snippet! I&#039;ve actually started a blog devoted to code snippets like these and thought I&#039;d reach out and maybe you could check it out?

http://thinkandroid.wordpress.com

It&#039;s a pretty young blog (~ 3 weeks old now) but it&#039;s doing pretty well... getting about 200-300 hits a day. And yea I&#039;ve wanted to reach out to other blogs/sites like mine to help connect my site with others and ultimately help developers reach my site for potentially useful tutorials or examples.

But yes let me know what you think! Hope to hear back!</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>Thanks for the code snippet! I&#8217;ve actually started a blog devoted to code snippets like these and thought I&#8217;d reach out and maybe you could check it out?</p>
<p><a href="http://thinkandroid.wordpress.com" rel="nofollow">http://thinkandroid.wordpress.com</a></p>
<p>It&#8217;s a pretty young blog (~ 3 weeks old now) but it&#8217;s doing pretty well&#8230; getting about 200-300 hits a day. And yea I&#8217;ve wanted to reach out to other blogs/sites like mine to help connect my site with others and ultimately help developers reach my site for potentially useful tutorials or examples.</p>
<p>But yes let me know what you think! Hope to hear back!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
