<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Just An Application</title>
	<atom:link href="http://justanapplication.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justanapplication.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 18 Jan 2012 08:50:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='justanapplication.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Just An Application</title>
		<link>http://justanapplication.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://justanapplication.wordpress.com/osd.xml" title="Just An Application" />
	<atom:link rel='hub' href='http://justanapplication.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Two Android Applications, A Shared UI Element, And A Shared Process: A Tale Of ClassLoaders And Confusion</title>
		<link>http://justanapplication.wordpress.com/2011/12/18/two-android-applications-a-shared-ui-element-and-a-shared-process-a-tale-of-classloaders-and-confusion/</link>
		<comments>http://justanapplication.wordpress.com/2011/12/18/two-android-applications-a-shared-ui-element-and-a-shared-process-a-tale-of-classloaders-and-confusion/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 21:13:29 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Application Process Sharing]]></category>
		<category><![CDATA[Android Applications]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android Layout Inflation]]></category>
		<category><![CDATA[Android Layouts]]></category>
		<category><![CDATA[Java ClassLoaders]]></category>
		<category><![CDATA[android.view.LayoutInflater]]></category>
		<category><![CDATA[android.view.LayoutInflater.Factory]]></category>
		<category><![CDATA[AndroidApplicationProcessSharing]]></category>
		<category><![CDATA[AndroidApplications]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[AndroidIssues]]></category>
		<category><![CDATA[AndroidLayoutInflation]]></category>
		<category><![CDATA[AndroidLayouts]]></category>
		<category><![CDATA[JavaClassLoaders]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2392</guid>
		<description><![CDATA[1. Sharing UI Elements Between Android Applications Suppose I have a sub-class of android.view.View called xper.common.CommonView which I want to use in the main layouts of two applications XperGeraint and XperTristram like this &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" &#62; &#60;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /&#62; &#60;xper.common.CommonView android:id="@+id/common_view" android:layout_width="fill_parent" android:layout_height="wrap_content"/&#62; &#60;/LinearLayout&#62; I want the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2392&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/12/18/two-android-applications-a-shared-ui-element-and-a-shared-process-a-tale-of-classloaders-and-confusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Eight: The CDATA Chunk</title>
		<link>http://justanapplication.wordpress.com/2011/09/27/android-internals-binary-xml-part-eight-the-cdata-chunk/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/27/android-internals-binary-xml-part-eight-the-cdata-chunk/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 03:24:06 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android XML CDATA Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[RES_XML_CDATA_TYPE]]></category>
		<category><![CDATA[XMLCDATAChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2212</guid>
		<description><![CDATA[1.0 Example There are no CDATA chunks in the main.xml layout example and by default it is unlikely that the Binary XML version of any layout will contain any unless you go out of your way to do something like this. &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"&#62; This is some character data &#60;![CDATA[This is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2212&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/27/android-internals-binary-xml-part-eight-the-cdata-chunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Seven: The XML End Element Chunk</title>
		<link>http://justanapplication.wordpress.com/2011/09/26/android-internals-binary-xml-part-seven-the-xml-end-element-chunk/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/26/android-internals-binary-xml-part-seven-the-xml-end-element-chunk/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 05:46:34 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android XML EndElement Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[RES_XML_END_ELEMENT_TYPE]]></category>
		<category><![CDATA[XMLEndElementChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2210</guid>
		<description><![CDATA[1.0 The Example The example contains two EndElement chunks representing the end tags of the TextView and LinearLayout elements 0000000 03 00 08 00 c4 02 00 00 01 00 1c 00 84 01 00 00 0000010 0a 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 0000020 00 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2210&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/26/android-internals-binary-xml-part-seven-the-xml-end-element-chunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Six: The XML Start Element Chunk</title>
		<link>http://justanapplication.wordpress.com/2011/09/25/android-internals-binary-xml-part-six-the-xml-start-element-chunk/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/25/android-internals-binary-xml-part-six-the-xml-start-element-chunk/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 07:10:54 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android XML StartElement Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[RES_XML_START_ELEMENT_TYPE]]></category>
		<category><![CDATA[struct_ResXMLTree_attrExt]]></category>
		<category><![CDATA[struct_ResXMLTree_attribute]]></category>
		<category><![CDATA[XMLStartElementChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2208</guid>
		<description><![CDATA[1.0 The Example The example contains two StartElement chunks representing the start tags of the LinearLayout and TextView elements 0000000 03 00 08 00 c4 02 00 00 01 00 1c 00 84 01 00 00 0000010 0a 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 0000020 00 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2208&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/25/android-internals-binary-xml-part-six-the-xml-start-element-chunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Five: The XML Start And End Namespace Chunks</title>
		<link>http://justanapplication.wordpress.com/2011/09/24/android-internals-binary-xml-part-five-the-start-and-end-namespace-chunks/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/24/android-internals-binary-xml-part-five-the-start-and-end-namespace-chunks/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 05:51:31 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android XML EndNamespace Chunk]]></category>
		<category><![CDATA[Android XML StartNamespace Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[RES_XML_END_NAMESPACE_TYPE]]></category>
		<category><![CDATA[RES_XML_START_NAMESPACE_TYPE]]></category>
		<category><![CDATA[XMLEndNamespaceChunk]]></category>
		<category><![CDATA[XMLStartNamespaceChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2206</guid>
		<description><![CDATA[1.0 The Example The example contains a single pair of Start/End Namespace chunks 0000000 03 00 08 00 c4 02 00 00 01 00 1c 00 84 01 00 00 0000010 0a 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 0000020 00 00 00 00 00 00 00 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2206&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/24/android-internals-binary-xml-part-five-the-start-and-end-namespace-chunks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Four: The XML Resource Map Chunk</title>
		<link>http://justanapplication.wordpress.com/2011/09/23/android-internals-binary-xml-part-four-the-xml-resource-map-chunk/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/23/android-internals-binary-xml-part-four-the-xml-resource-map-chunk/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 03:17:41 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android XML ResourceMap Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[RES_XML_RESOURCE_MAP_TYPE]]></category>
		<category><![CDATA[XMLResourceMapChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2204</guid>
		<description><![CDATA[1.0 The Example The example contains a single XMLResourceMap chunk. 0000000 03 00 08 00 c4 02 00 00 01 00 1c 00 84 01 00 00 0000010 0a 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 0000020 00 00 00 00 00 00 00 00 1a 00 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2204&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/23/android-internals-binary-xml-part-four-the-xml-resource-map-chunk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Three: XML Node</title>
		<link>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-three-xml-node/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-three-xml-node/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 16:57:49 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[struct_ResXMLTree_node]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2202</guid>
		<description><![CDATA[The headers of the chunks representing the start and end of namespace scopes, the start and end of elements, and CDATA are all instances of the following C++ struct (see frameworks/base/include/ResourceTypes.h lines 505-514) struct ResXMLTree_node { struct ResChunk_header header; // Line number in original source file at which this element appeared. uint32_t lineNumber; // Optional [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2202&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-three-xml-node/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part Two: The XML Chunk</title>
		<link>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-two-the-xml-chunk/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-two-the-xml-chunk/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 07:15:14 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android XML Chunk]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[RES_XML_TYPE]]></category>
		<category><![CDATA[XMLChunk]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2200</guid>
		<description><![CDATA[1.0 The Example The example contains a single XML chunk which represents the original XML document. 0000000 03 00 08 00 c4 02 00 00 01 00 1c 00 84 01 00 00 0000010 0a 00 00 00 00 00 00 00 00 00 00 00 44 00 00 00 0000020 00 00 00 00 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2200&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-two-the-xml-chunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>

		<media:content url="http://justanapplication.files.wordpress.com/2011/09/xml_chunk.png" medium="image">
			<media:title type="html">xml_chunk</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Binary XML &#8211; Part One Example</title>
		<link>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-one-example/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-one-example/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 07:00:59 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Binary XML]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android Resources]]></category>
		<category><![CDATA[AdroidInternals]]></category>
		<category><![CDATA[AndroidBinaryXML]]></category>
		<category><![CDATA[AndroidResources]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2198</guid>
		<description><![CDATA[The examples which follow are taken from the binary XML version of the main.xml layout file that was automatically generated as part of the same project the Resource table example was taken from. 1.0 main.xml The contents of the generated main.xml layout file. &#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" &#62; &#60;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2198&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-one-example/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Internals: Resources &#8211; Part Ten: Complex Resource Entry Examples</title>
		<link>http://justanapplication.wordpress.com/2011/09/22/android-internals-resources-part-ten-complex-resource-entry-examples/</link>
		<comments>http://justanapplication.wordpress.com/2011/09/22/android-internals-resources-part-ten-complex-resource-entry-examples/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 03:51:41 +0000</pubDate>
		<dc:creator>Simon Lewis</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Internals]]></category>
		<category><![CDATA[Android Resources]]></category>
		<category><![CDATA[AndroidInternals]]></category>
		<category><![CDATA[AndroidResources]]></category>

		<guid isPermaLink="false">http://justanapplication.wordpress.com/?p=2214</guid>
		<description><![CDATA[Complex Resource entries are used to represent array, attribute, plurals, and style Resources. Terminology To try and reduce the confusion resulting from the naming issues described here in what follows I am simply going to refer to instances of struct ResTable_map as members. 1.0 Arrays As the following examples show the distinction between array, integer-array, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justanapplication.wordpress.com&amp;blog=1190697&amp;post=2214&amp;subd=justanapplication&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://justanapplication.wordpress.com/2011/09/22/android-internals-resources-part-ten-complex-resource-entry-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a052f43e941d4c7c20e84c6c92adf4bb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justanapp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
