<?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>simple blog &#187; Android</title>
	<atom:link href="http://asantoso.wordpress.com/category/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://asantoso.wordpress.com</link>
	<description>design patterns, mobile, technology, philosophy.</description>
	<lastBuildDate>Sun, 27 Sep 2009 06:47:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='asantoso.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ed8fccdd9442132a3490db1bc4238ad4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>simple blog &#187; Android</title>
		<link>http://asantoso.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://asantoso.wordpress.com/osd.xml" title="simple blog" />
		<item>
		<title>Using jdb (java debugger) with adb (android debug bridge) to debug Android app on a handset (without ADT plugin).</title>
		<link>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/</link>
		<comments>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 10:20:31 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=107</guid>
		<description><![CDATA[Method 1: Debug from CLI

Launch target apk.  Get pid of target app. Forward target app remote port (jdwp:&#60;pid&#62;) to local tcp port (tcp:&#60;#&#62;).  Attach jdp to specified tcp port.

(apk manifest with debuggable=&#8221;true&#8221;)
scripts:
#!/bin/bash
#adb kill-server
#sleep 1
#adb start-server
adb wait-for-device
cmd="adb -d shell am start -e debug true -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -n com.thirdwhale/com.thirdwhale.activity.SplashActivity";
echo $cmd;
exec $cmd &#38;
app_debug_port=$(adb jdwp &#124; tail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=107&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/26/using-jdb-with-adb-to-debugging-of-android-app-on-a-real-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Passing complex data between two activities via byte serialization (Google protobuf)</title>
		<link>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/</link>
		<comments>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:56:17 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android 1.5]]></category>
		<category><![CDATA[Cupcake]]></category>
		<category><![CDATA[protobuf]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=76</guid>
		<description><![CDATA[First time android developer frequently asked question:  How to pass complex data from one activity to another?  One way is to use XML string serialization. Marshalling is performed at the originating activity and demarshalling is performed at the target activity. One drawback with using XML is you have more extra bytes (caused by unnecessary tags) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=76&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/22/passing-complex-data-between-two-activities-via-serialization-google-protobuf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/activity_diagram1.png" medium="image">
			<media:title type="html">activity_diagram</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/passing_data_2_activites.png" medium="image">
			<media:title type="html">passing_data_2_activites</media:title>
		</media:content>
	</item>
		<item>
		<title>How to build Android application package (.apk) from the command line using the SDK tools + continuously integrated using CruiseControl.</title>
		<link>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/</link>
		<comments>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:31:49 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CruiseControl]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=60</guid>
		<description><![CDATA[Hello all android developers, I just want to share my experience building android apk manually using sdk tools without using Eclipse.  My original goal is motivated firstly by the desire to incorporate continuous integration aspect to Android development process and secondly to ditch the ADT eclipse plugin since the plugin auto-build process blocks Eclipse UI [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=60&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2009/09/15/how-to-build-android-application-package-apk-from-the-command-line-using-the-sdk-tools-continuously-integrated-using-cruisecontrol/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2009/09/build-flow1.png" medium="image">
			<media:title type="html">build-flow</media:title>
		</media:content>
	</item>
		<item>
		<title>Link: Useful tool for Android development</title>
		<link>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/</link>
		<comments>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 01:26:14 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=15</guid>
		<description><![CDATA[Download busybox for Android: here
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=15&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/03/08/link-useful-tool-for-android-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>
	</item>
		<item>
		<title>Android: View image from the web</title>
		<link>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/</link>
		<comments>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 13:33:05 +0000</pubDate>
		<dc:creator>asantoso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[stream image]]></category>
		<category><![CDATA[view image]]></category>

		<guid isPermaLink="false">http://asantoso.wordpress.com/?p=18</guid>
		<description><![CDATA[Simple example on how to get and display image from the web without saving it to local storage in Android.
Download the source: Example1.zip


package org.asantoso;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

import android.app.Activity;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.text.Editable;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;

public class Example1 extends Activity{
	EditText inputUrl;
	OnClickListener getImageBtnOnClick = new OnClickListener() {
		public void onClick(View view) {
			Context context = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asantoso.wordpress.com&blog=380229&post=18&subd=asantoso&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://asantoso.wordpress.com/2008/03/07/download-and-view-image-from-the-web/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1d5914fb0485d2f14378f5dfc2a63bac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asantoso</media:title>
		</media:content>

		<media:content url="http://asantoso.files.wordpress.com/2008/03/example1.png" medium="image">
			<media:title type="html">Example1</media:title>
		</media:content>
	</item>
	</channel>
</rss>