<?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>Tseng's dev blog &#187; Java</title>
	<atom:link href="http://tseng-blog.nge-web.net/blog/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://tseng-blog.nge-web.net/blog</link>
	<description>A developers blog</description>
	<lastBuildDate>Thu, 29 Apr 2010 18:36:54 +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>Android 1.5 NDK Released!</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/06/25/android-1-5-ndk-released/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/06/25/android-1-5-ndk-released/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 20:22:54 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android News]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[JNI]]></category>
		<category><![CDATA[NDK]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/2009/06/25/android-1-5-ndk-released/</guid>
		<description><![CDATA[Finally Google Released the NDK, which allows developers to use native code/libraries in their code (programmed in C or C++) which can be used for intense CPU operations such as encoding/decoding or physics. 
You can download it here.
For most Developers this isn’t much interesting, but if you need advanced stuff as implementing your own audio [...]


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/06/25/android-1-5-ndk-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SavedState: Preserve data when your Activity is recreated &#8211; Part 1</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/02/27/savedstate-preserve-data-when-application-is-recreated/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/02/27/savedstate-preserve-data-when-application-is-recreated/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 22:07:24 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Activity]]></category>
		<category><![CDATA[Activity Lifecycle]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SavedState]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/2009/02/27/savedstate-preserve-data-when-application-is-recreated/</guid>
		<description><![CDATA[Certain events (like low on memory, or configuration change) can lead that your Android application is killed and possibly important data is lost when it's recreated again. To prevent this, you need to temoprary preserve your important data in SavedStates (onSavedInstanceState and onRestoreInstanceState) and load it when the application is recreated to prevent losing critical data necessary for your application


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/02/27/savedstate-preserve-data-when-application-is-recreated/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to implement your own Listener in Android/Java</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/02/17/how-implement-your-own-listener-android-java/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/02/17/how-implement-your-own-listener-android-java/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 19:31:58 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Custom Widget]]></category>
		<category><![CDATA[Implementation]]></category>
		<category><![CDATA[Listener]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/?p=92</guid>
		<description><![CDATA[When you’re developing application, there is often a need to create your own controls/widgets/classes or to extend already available ones. And in most cases, you want this control/widget to be as flexible as possible. In order to achieve this, you have to create special events, which can be handled outside of your widget.
Some of the [...]


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/02/17/how-implement-your-own-listener-android-java/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Implementing Listeners in your Android/Java application</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/02/14/implementing-listeners-in-your-android-java-application/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/02/14/implementing-listeners-in-your-android-java-application/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 15:18:17 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Implementation]]></category>
		<category><![CDATA[Listener]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/2009/02/14/implementing-listeners-in-your-androidjava-application/</guid>
		<description><![CDATA[I’ve seen many people asking how to implement Listeners in their applications. Implementing a Listener is quite easy. There are 3 ways to implement an Listener and the have their advantages and disadvantages. 

The tree way to implement Listeners are


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/02/14/implementing-listeners-in-your-android-java-application/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Android: Creating XML UIs</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/01/30/android-creating-xml-uis/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/01/30/android-creating-xml-uis/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 01:31:09 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/2009/01/30/android-creating-xml-uis/</guid>
		<description><![CDATA[In the last article, Android: Your first Android Application, we created a simple login screen, but didn't had time to go in deeper in the UI XML structure. In this article I will explain the basics of creating an UI via XML resource. I'll use the XML file from previous example here.


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/01/30/android-creating-xml-uis/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Android: Your first Android Application</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/01/29/android-your-first-android-application/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/01/29/android-your-first-android-application/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 23:32:30 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/2009/02/01/android-your-first-android-application/</guid>
		<description><![CDATA[Update: Small update for all of you who are not using Eclipse to develop their application, check out this Tutorial on how to compile Android Application without IDE.


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/01/29/android-your-first-android-application/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Android: Installing the SDK</title>
		<link>http://tseng-blog.nge-web.net/blog/2009/01/02/android-installing-the-sdk/</link>
		<comments>http://tseng-blog.nge-web.net/blog/2009/01/02/android-installing-the-sdk/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 14:26:24 +0000</pubDate>
		<dc:creator>Tseng</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Handset]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://tseng-blog.nge-web.net/blog/?p=13</guid>
		<description><![CDATA[Before getting started, you first need to download and install the Android SDK. But first, if you meet the requirements.
In order to use the Android SDK, you need to have JDK 5 or JDK 6 installed on your system (JRE alone won&#8217;t do it!). Next you&#8217;ll need an IDE (it&#8217;s optional, but makes developing much [...]


No related posts.]]></description>
		<wfw:commentRss>http://tseng-blog.nge-web.net/blog/2009/01/02/android-installing-the-sdk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
