<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechJug &#187; Andriod</title>
	<atom:link href="http://www.techjug.com/index.php/category/andriod/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techjug.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 02 Jan 2010 09:26:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What is an Intent?</title>
		<link>http://www.techjug.com/index.php/2009/12/what-is-an-intent/</link>
		<comments>http://www.techjug.com/index.php/2009/12/what-is-an-intent/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 06:09:08 +0000</pubDate>
		<dc:creator>inam</dc:creator>
				<category><![CDATA[Andriod]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Andriod tutorials]]></category>

		<guid isPermaLink="false">http://www.techjug.com/?p=146</guid>
		<description><![CDATA[An intent is an asynchronous message used to activate an Andriod Application Components like Activity, Service and broadcast receiver, content providers are not activated by intents but by receiving a request from ContentResolver.
To activate an Activity an intent object with information of action being requested and URI of the data to be acted upon is passed to Context.startActivity() [...]]]></description>
			<content:encoded><![CDATA[<p>An intent is an asynchronous message used to activate an Andriod Application Components like Activity, Service and broadcast receiver, content providers are not activated by intents but by receiving a request from ContentResolver.</p>
<p>To activate an Activity an intent object with information of action being requested and URI of the data to be acted upon is passed to Context.startActivity() or Activity.startActivityForResult().</p>
<p>A service can be passed by passing an intent object to Context.startService(). To establish an ongoing connection between the calling component and a target service Context.bindService() is called by passing an intent object.</p>
<p>Similarly and intent object is passed to Context.sendBroadcast(), Context.sendOrderedBroadcast(), or Context.sendStickyBroadcast() to activate a service.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techjug.com/index.php/2009/12/what-is-an-intent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics of an Andriod Application(Simplified)</title>
		<link>http://www.techjug.com/index.php/2009/12/basics-of-an-andriod-applicationsimplified/</link>
		<comments>http://www.techjug.com/index.php/2009/12/basics-of-an-andriod-applicationsimplified/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 14:52:17 +0000</pubDate>
		<dc:creator>inam</dc:creator>
				<category><![CDATA[Andriod]]></category>
		<category><![CDATA[Andriod Applications]]></category>
		<category><![CDATA[andriod basics]]></category>
		<category><![CDATA[Andriod tutorials]]></category>

		<guid isPermaLink="false">http://www.techjug.com/?p=143</guid>
		<description><![CDATA[Andriod applications are written in Java programming language. Each Andriod Application can have 4 basic components.
Activities
You can say Activity is a set of UI components available for users to be used , at some specific instant of time. For example; an Activity in image viewer application can be image and its description and navigation available. [...]]]></description>
			<content:encoded><![CDATA[<p>Andriod applications are written in Java programming language. Each Andriod Application can have 4 basic components.</p>
<p><strong>Activities</strong></p>
<p>You can say Activity is a set of UI components available for users to be used , at some specific instant of time. For example; an Activity in image viewer application can be image and its description and navigation available. Moving from one activity to another is accomplished by having the current activity start the next one.<span id="more-143"></span> Each visual component in an activity is called view and is derived from base View class.</p>
<p><strong>Service</strong></p>
<p>Service runs in background for an indefinite period of time and doesn't have an interface. Each service extends Service Base class.</p>
<p>Service usually is involved in background work, while the user is busy with Activity. let us take an example of a car racing game.It may consists of several Activities like one displaying game status and controls to move the car. And there can be a service playing the background music.</p>
<p><strong>Broadcast receivers</strong></p>
<p>A broadcast receiver is a component which receives a broadcast message and takes some action based on the message. Broadcast receiver can start an Activity in response to Broadcast message of battery low, SMS received, or alarm clock time out. Each broadcast receiver extends BroadcastReceiver class.</p>
<p><strong>Content providers</strong></p>
<p>A content provider makes a specific set of the application's data available to other applications. The data can be stored in the file system, in an SQLite database. Each content provider extends ContentProvider base class.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techjug.com/index.php/2009/12/basics-of-an-andriod-applicationsimplified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung Behold II Android And Touchwiz Phone</title>
		<link>http://www.techjug.com/index.php/2009/11/samsung-behold-ii-android-and-touchwiz-phone/</link>
		<comments>http://www.techjug.com/index.php/2009/11/samsung-behold-ii-android-and-touchwiz-phone/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 16:49:21 +0000</pubDate>
		<dc:creator>ali</dc:creator>
				<category><![CDATA[Andriod]]></category>
		<category><![CDATA[Samsung]]></category>

		<guid isPermaLink="false">http://www.techjug.com/?p=33</guid>
		<description><![CDATA[Samsung has launched its first official Andriod handset in the US market. Samsung Behold II include a 5 megapixel camera, AMOLED screen and Samsung's own Touchwiz UI.
These days the BIG thing  in the smart phone's race  is the introduction of Andriod Operating System. Behold II will launch with Andriod 1.5 and eventually update to Andriod [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Samsung has launched its first official Andriod handset in the US market. Samsung Behold II include a 5 megapixel camera, AMOLED screen and Samsung's own Touchwiz UI.</p>
<p style="text-align: left;">These days the BIG thing  in the smart phone's race  is the introduction of Andriod Operating System. Behold II will launch with Andriod 1.5 and eventually update to Andriod 2.0, sometime in 2010.</p>
<p style="text-align: left;"><span id="more-33"></span></p>
<p style="text-align: center; "><img class="size-full wp-image-35 aligncenter" title="samsung_behold-2" src="http://www.techjug.com/wp-content/uploads/2009/11/samsung_behold-2.jpg" alt="samsung_behold-2" width="212" height="420" /></p>
<p style="text-align: left;">It is yet to see that how Samsung creates some space for Behold II when  HTC and Motorolla, just a couple of days back introduced two most talked about smart phones HTC Driod Eris and Motorolla Driod. HTC runs of Windows Mobiles and Motorolla Driod is the first phone that runs on Andriod 2.0. So for Andriod enthusiasts, Motorolla has introduced just the thing they want. Some critics are of the view that it makes no sense that consumers will be keen in a set which is already three updates behind.</p>
<p style="text-align: left;">It looks like the Behold II won't update to 2.0 until 2010 which begs the conspiracy theory that Google and Verizon cooked up a deal to leave the Motorola DROID as the only Android 2.0 device for 2009. What do you guys think? [via <a style="color: #016aab; text-decoration: underline;" href="http://www.tmonews.com/2009/11/behold-2-shipping-with-android-1-5/">tmonews</a>]</p>
<p style="text-align: left;">The other big feature in the set is Samsung's own Touchwiz UI. To get an idea what the UI is all about, look at the video at the end. To make navigation simple, Samsung's UI consists of a cube with applications on all sides of the cube that eventually makes it easy to jump from one application to the other. But is it really required? That is the big questions.</p>
<p style="text-align: left;">So all eyes are on Samsung that how, in the midst of a storm of Andriod high end phones, Behold II makes its place.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/Wfq7lWOV1Tc&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/Wfq7lWOV1Tc&amp;feature"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techjug.com/index.php/2009/11/samsung-behold-ii-android-and-touchwiz-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>China based Huawei would be launching series of andriod phones</title>
		<link>http://www.techjug.com/index.php/2009/11/china-based-huawei-would-be-launching-series-of-andriod-phones/</link>
		<comments>http://www.techjug.com/index.php/2009/11/china-based-huawei-would-be-launching-series-of-andriod-phones/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 17:45:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Andriod]]></category>
		<category><![CDATA[Huawei phone]]></category>

		<guid isPermaLink="false">http://www.techjug.com/?p=25</guid>
		<description><![CDATA[After Huawei plus chinese company Huawei would be coming up with multiple andriod based cell phones in Europe , Latin America and Asia Pacific in coming months.
Huawei's phone would be targeted for low-end customers. Further details aren't made public.
]]></description>
			<content:encoded><![CDATA[<p>After Huawei plus chinese company Huawei would be coming up with multiple andriod based cell phones in Europe , Latin America and Asia Pacific in coming months.</p>
<p>Huawei's phone would be targeted for low-end customers. Further details aren't made public.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techjug.com/index.php/2009/11/china-based-huawei-would-be-launching-series-of-andriod-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung would be launching andriod powered i6500</title>
		<link>http://www.techjug.com/index.php/2009/11/samsung-would-be-launching-andriod-powered-i6500/</link>
		<comments>http://www.techjug.com/index.php/2009/11/samsung-would-be-launching-andriod-powered-i6500/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:49:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Andriod]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[upcomming cells]]></category>

		<guid isPermaLink="false">http://www.techjug.com/?p=3</guid>
		<description><![CDATA[Samsung's new i6500 code named as "Saturn" would be running andriod  2.0. Powered by 800 MHz processor i6500 is a good addition in the list of  andriod handset which includes Galaxy, Spica, Behold II, and Moment.
]]></description>
			<content:encoded><![CDATA[<p>Samsung's new i6500 code named as "Saturn" would be running andriod  2.0. Powered by 800 MHz processor i6500 is a good addition in the list of  andriod handset which includes Galaxy, Spica, Behold II, and Moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techjug.com/index.php/2009/11/samsung-would-be-launching-andriod-powered-i6500/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
