<?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>Novoda &#187; Training &amp; Speaking</title>
	<atom:link href="http://novoda.com/category/training-speaking/feed/" rel="self" type="application/rss+xml" />
	<link>http://novoda.com</link>
	<description>Android mobile development and consultancy</description>
	<lastBuildDate>Wed, 03 Mar 2010 12:09:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fom2008 and coming articles</title>
		<link>http://novoda.com/2008/11/22/fom2008-and-coming-articles/</link>
		<comments>http://novoda.com/2008/11/22/fom2008-and-coming-articles/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 19:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Conference & Events]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Training & Speaking]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[fom2008]]></category>
		<category><![CDATA[summary]]></category>

		<guid isPermaLink="false">http://www.novoda.com/blog/?p=23</guid>
		<description><![CDATA[In light of the questions asked to us by developers at FOM we will present on this blog, a series of articles based around the lesser explained points of Android’s underlying architecture and design.

In this series we will seek to offer value over Google’s own very well prepared documentation by layering external developer experience and context to each of the areas we cover. This series is intended for seasoned developers who wish to gain a well documented, experienced technical insight into the platform. The following articles are planned:]]></description>
			<content:encoded><![CDATA[<p>On Tuesday 18th November Novoda attended London’s <a href="http://www.future-of-mobile.com/2008/london/">Future of Mobile 2008</a> and gave a short workshop introduction to Android in conjunction with Kieran Gutteridge of <a title="Intohand" href="http://www.intohand.com/">Intohand</a>. The talk was aimed at developers experienced in a variety of other mobile and embedded platforms but who were not familiar with the various specifics of Android. All the attendant’s benefited from the presentation, but ideally more resources prepared for the event would have increased it’s value for everyone. In light of the questions asked to us by developers at FOM we will present on this blog, a series of articles based around the lesser explained points of Android’s underlying architecture and design.</p>
<div id="attachment_29" class="wp-caption aligncenter" style="width: 310px"><a href="http://novoda.co.uk/wp-content/uploads/2008/11/carl_giving-_pres11.jpg"><img src="http://www.novoda.com/blog/wp-content/uploads/2008/11/carl_giving-_pres1-300x218.jpg" alt="Carl Carl presenting at Fom 2008 with Kieran Gutteridge" title="Carl-Gustaf Harroch: Fom 2008" width="300" height="218" class="size-medium wp-image-29" /></a><p class="wp-caption-text">Carl presenting at Fom 2008 with Kieran Gutteridge</p></div>
<h2>A Summary of coming articles</h2>
<p>In this series we will seek to offer value over Google’s own very well prepared documentation by layering external developer experience and context to each of the areas we cover. This series is intended for seasoned developers who wish to gain a well documented, experienced technical insight into the platform. The following articles are planned:</p>
<h3>Android Architecture Overview</h3>
<p>Android is often cited as a ‘full stack’. This means that the platform is provided with an OS, sys bins/libs, JRE and SDK. The full shabang is open source from top to bottom but the documentation only lightly covers the Dalvik Virtual Machine. We explore the specifically built packages that make up android from the kernel to the Java libraries in the hope to completely orientate developers with the inner technical workings within most current Android package.</p>
<h3>AndroidManifest.xml</h3>
<p>The AndroidManifest.xml serves as an application’s contract between it’s end environment and the other installed applications. Through the AndroidManifest.xml an application can choose to expose its intentions, services and content to outside applications. We look into the alternative situations in which the AndroidManifest.xml’s role affects an application and expose its implementation.</p>
<h3>Activities</h3>
<p>An activity is embodied as a screen and breaks up high level functional elements in an Application. When navigating through an android system the forefront process operates upon the ‘context’ of the shown Activity. We examine the relationships between different types of activities in an attempt to completely understand their life cycle and how it affects the surrounding system.</p>
<h3>Intents &#038; BroadcasteReceivers</h3>
<p>In Android, actions and re-actions across processes and activities are carried out through means of Intents and BroadcastReceivers. Instead of hard coding the intended application path, applications can choose to leave their journey open to re navigation and simply declare their intentions to the rest of the system. By preemptively declaring their intentions, both the user and other applications can choose to supplement any behavior upon their phone with any other piece of software that offers the same functionality. We explore the extents to which you can choose to customize the experience and look at the practical aspects and challenges that lie in deciding how to best share with the rest of the system.</p>
<h3>Views and Resources</h3>
<p>External resources are subject to localization and more commonly changed than the internals of an applications inner code. For this reason amongst others the layouts of views are marked up in xml. Binary resources such as images and audio files are also more prone to change and security issues and so are located within a predefined area. The Android SDK makes all resources available through an automatically generated and local binary registry. An application can easily access any of it’s resources via this registry throughout it’s operation. To what advantage has xml been used in such an unconventional why does the Android SDK choose to enforce the location of all binary files so rigidly?</p>
<h3>Services</h3>
<p>Services have no user interface and can run locally within an application or can take on a life of their own outside any one application, adhering to Linux’s inbuilt security model. Remote Services are shared via Android’s own IDL (Interface description language). The majority of the code for this external communication is generated for a user after declaring the interface by which the data is to be exchanged.</p>
<h3>Content Providers</h3>
<p>The architecture of Android applications is designed around the idea of opting into a degree of sharing within a community of applications. And application can choose to what extent it makes its data available through content providers. Content providers promote the idea of global data inter exchange and reuse within every system and we look at how Applications can best take advantage of this unique feature upon the Android platform.</p>
<p>We would be very happy to hear comments, criticism and requests so if you have anything to say on anything we cover then please leave a comment.</p>
<h3>Citations &amp; Research</h3>
<ul>
<li><cite>Official Google Android Overview: <a title="Google:Anatomy of an app" href="http://code.google.com/android/intro/anatomy.html">&#8220;Anatomy of an app&#8221;</a></cite></li>
<li><cite>Google&#8217;s official videos overviews of Android Architecture:<br />
<a title="You Tube:Android Architecture part 1" href="http://www.youtube.com/watch?v=Mm6Ju0xhUW8">part 1</a>, <a title="You Tube:Android Architecture part 2" href="http://www.youtube.com/watch?v=fL6gSd4ugSI">part 2</a>, <a title="You Tube:Android Architecture part 3" href="http://www.youtube.com/watch?v=MPukbH6D-lY">part 3</a></cite></li>
<li><cite><a title="Google:Anatomy of an app" href="http://code.google.com/android/devel/bblocks-manifest.html">Android developer reference: AndroidManifest.xml</a></cite></li>
<li><cite><a title="Android Docs:Activity" href="http://code.google.com/android/reference/android/app/Activity.html">Android Technical Docs: android.app.Activity</a><br />
</cite></li>
<li><cite><a title="Android Docs:Intent" href="http://code.google.com/android/reference/android/content/Intent.html">Android developer reference: android.content.Intent</a><br />
</cite></li>
<li><cite> <a title="Android Docs:BroadcastReciever" href="http://code.google.com/android/reference/android/content/BroadcastReceiver.html">Android Technical Docs: Android.content.BroadcastReceiver</a><br />
</cite></li>
<li><cite><a title="Google:Security and Permissions in Android" href="http://code.google.com/android/devel/security.html">Android developer reference: Security and Permissions in Android</a><br />
</cite></li>
<li><cite><a title="Android Docs:View" href="http://code.google.com/android/reference/android/view/package-summary.html">Android Technical Docs: android.view</a></cite></li>
<li><cite><a title="Android Docs:view.View" href="http://code.google.com/android/reference/android/view/View.html">Android Technical Docs: android.view.View</a></cite></li>
<li><cite><a title="Google:View Gallery" href="http://code.google.com/android/reference/view-gallery.html">Types of views in Google&#8217;s view gallery</a></cite></li>
<li><cite><a title="Android Docs:Service" href="http://code.google.com/android/reference/android/app/Service.html">Android Technical Docs: android.app.Service</a><br />
 </cite></li>
<li><cite><a title="Google:Security and Permissions in Android" href="http://code.google.com/android/devel/security.html">Android developer reference: Security and Permissions in Android</a><br />
</cite></li>
<li><cite<a title="Android Docs:android.content.ContentProvider" href="http://code.google.com/android/reference/android/content/ContentProvider.html">Android Technical Docs: android.content.ContentProvider</a><br />
</cite></li>
</ul>



Share this post:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;partner=sociable" title="Print"><img src="http://novoda.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Fom2008%20and%20coming%20articles&amp;body=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F" title="email"><img src="http://novoda.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;title=Fom2008%20and%20coming%20articles&amp;bodytext=In%20light%20of%20the%20questions%20asked%20to%20us%20by%20developers%20at%20FOM%20we%20will%20present%20on%20this%20blog%2C%20a%20series%20of%20articles%20based%20around%20the%20lesser%20explained%20points%20of%20Android%E2%80%99s%20underlying%20architecture%20and%20design.%0D%0A%0D%0AIn%20this%20series%20we%20will%20seek%20to%20offer%20value%20over%20Google%E2%80%99s%20own%20very%20well%20prepared%20documentation%20by%20layering%20external%20developer%20experience%20and%20context%20to%20each%20of%20the%20areas%20we%20cover.%20This%20series%20is%20intended%20for%20seasoned%20developers%20who%20wish%20to%20gain%20a%20well%20documented%2C%20experienced%20technical%20insight%20into%20the%20platform.%20The%20following%20articles%20are%20planned%3A" title="Digg"><img src="http://novoda.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;title=Fom2008%20and%20coming%20articles&amp;notes=In%20light%20of%20the%20questions%20asked%20to%20us%20by%20developers%20at%20FOM%20we%20will%20present%20on%20this%20blog%2C%20a%20series%20of%20articles%20based%20around%20the%20lesser%20explained%20points%20of%20Android%E2%80%99s%20underlying%20architecture%20and%20design.%0D%0A%0D%0AIn%20this%20series%20we%20will%20seek%20to%20offer%20value%20over%20Google%E2%80%99s%20own%20very%20well%20prepared%20documentation%20by%20layering%20external%20developer%20experience%20and%20context%20to%20each%20of%20the%20areas%20we%20cover.%20This%20series%20is%20intended%20for%20seasoned%20developers%20who%20wish%20to%20gain%20a%20well%20documented%2C%20experienced%20technical%20insight%20into%20the%20platform.%20The%20following%20articles%20are%20planned%3A" title="del.icio.us"><img src="http://novoda.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;title=Fom2008%20and%20coming%20articles" title="Reddit"><img src="http://novoda.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Fom2008%20and%20coming%20articles%20-%20http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F" title="Twitter"><img src="http://novoda.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;title=Fom2008%20and%20coming%20articles&amp;annotation=In%20light%20of%20the%20questions%20asked%20to%20us%20by%20developers%20at%20FOM%20we%20will%20present%20on%20this%20blog%2C%20a%20series%20of%20articles%20based%20around%20the%20lesser%20explained%20points%20of%20Android%E2%80%99s%20underlying%20architecture%20and%20design.%0D%0A%0D%0AIn%20this%20series%20we%20will%20seek%20to%20offer%20value%20over%20Google%E2%80%99s%20own%20very%20well%20prepared%20documentation%20by%20layering%20external%20developer%20experience%20and%20context%20to%20each%20of%20the%20areas%20we%20cover.%20This%20series%20is%20intended%20for%20seasoned%20developers%20who%20wish%20to%20gain%20a%20well%20documented%2C%20experienced%20technical%20insight%20into%20the%20platform.%20The%20following%20articles%20are%20planned%3A" title="Google Bookmarks"><img src="http://novoda.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;t=Fom2008%20and%20coming%20articles" title="Facebook"><img src="http://novoda.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;t=Fom2008%20and%20coming%20articles" title="HackerNews"><img src="http://novoda.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F" title="Technorati"><img src="http://novoda.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fnovoda.com%2F2008%2F11%2F22%2Ffom2008-and-coming-articles%2F&amp;partner=sociable" title="PDF"><img src="http://novoda.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://novoda.com/2008/11/22/fom2008-and-coming-articles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
