<?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>Superdit.com &#187; android</title>
	<atom:link href="http://superdit.com/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://superdit.com</link>
	<description>blogging, design, tech, and web</description>
	<lastBuildDate>Thu, 19 Jan 2012 07:50:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating Basic Android Logo With CSS</title>
		<link>http://superdit.com/2011/04/10/creating-basic-android-logo-with-css/</link>
		<comments>http://superdit.com/2011/04/10/creating-basic-android-logo-with-css/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 10:11:44 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=5990</guid>
		<description><![CDATA[CSS3 bring us more advanced feature to styling the html element, this sort example show how to create a very basic android logo based on CSS. It must be very easy to create it, if I sketch it may look something like this picture below. Yup all with div element, we just have to manipulating<a href="http://superdit.com/2011/04/10/creating-basic-android-logo-with-css/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>CSS3 bring us more advanced feature to styling the html element, this sort example show how to create a very basic android logo based on CSS. It must be very easy to create it, if I sketch it may look something like this picture below.</p>
<p><a href="http://superdit.com/2011/04/10/creating-basic-android-logo-with-css" target="_blank"><img class="alignnone" title="Android Logo Mockup" src="http://i.min.us/imOSye.png" alt="Android Logo Mockup" width="540" height="504" /></a><span id="more-5990"></span></p>
<p>Yup all with div element, we just have to manipulating the width, height, background color, rounded corner, position and the angle for the antenna part. I am not explaining and not showing the screen capturen since we all already familiar with android, by the way here are the demo and the source code.</p>
<p style="text-align: center;"><a title="CSS Android Logo" href="http://demo.superdit.com/css/android_logo" target="_blank">View Demo</a></p>
<h5>The HTML</h5>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;android_container&quot;&gt;
    &lt;div id=&quot;android_antenna&quot;&gt;
        &lt;div id=&quot;android_antenna_left&quot; class=&quot;part&quot;&gt;&lt;/div&gt;is
        &lt;div id=&quot;android_antenna_right&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;android_head&quot;&gt;
        &lt;div id=&quot;android_eye_left&quot;&gt;&lt;/div&gt;
        &lt;div id=&quot;android_eye_right&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;android_body_main&quot;&gt;
        &lt;div id=&quot;android_hand_left&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div id=&quot;android_body&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div id=&quot;android_hand_right&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;android_leg&quot;&gt;
        &lt;div id=&quot;android_leg_left&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div id=&quot;android_leg_right&quot; class=&quot;part&quot;&gt;&lt;/div&gt;
        &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<h5>The CSS</h5>
<pre class="brush: css; title: ; notranslate">
#android_eye_left {
    position: relative;
    top: 50px;
    left: 40px;
    background: #fff;
    height: 20px;
    width: 20px;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
}
#android_eye_right {
    position: relative;
    top: 30px;
    left: 140px;
    background: #fff;
    height: 20px;
    width: 20px;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
}

#android_antenna_left {
    position: relative;
    top: 35px;
    left: 100px;
    background: #95c03b;
    height: 50px;
    width: 7px;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    -moz-transform:rotate(150deg);
    -webkit-transform:rotate(150deg);
    float:left;
}
#android_antenna_right {
    position: relative;
    top: 35px;
    left: 210px;
    background: #95c03b;
    height: 50px;
    width: 7px;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    -moz-transform:rotate(30deg);
    -webkit-transform:rotate(30deg);
    float:left;
}
#android_head {
    background: #95c03b;
    height: 100px;
    width: 200px;
    -webkit-border-radius: 1.0em 1.0em 0 0;
    -moz-border-radius: 1.0em 1.0em 0 0;
    border-radius: 6.0em 6.0em 0 0;
    margin: 15px 0 15px 65px;
}
#android_body {
    background: #95c03b;
    height: 200px;
    width: 200px;
    -webkit-border-radius: 0 0 1.0em 1.0em;
    -moz-border-radius: 0 0 1.0em 1.0em;
    border-radius: 0 0 1.0em 1.0em;
    float: left;
    margin: 0 15px;
}
#android_hand_left {
    background: #95c03b;
    height: 150px;
    width: 50px;
    float: left;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
}
#android_hand_right {
    background: #95c03b;
    height: 150px;
    width: 50px;
    float: left;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
}
#android_leg_left {
    background: #95c03b;
    height: 80px;
    width: 50px;
    float: left;
    margin-left: 95px;
    -webkit-border-radius: 0 0 1.5em 1.5em;
    -moz-border-radius: 0 0 1.5em 1.5em;
    border-radius: 0 0 1.5em 1.5em;
}
#android_leg_right {
    background: #95c03b;
    height: 80px;
    width: 50px;
    float: left;
    margin-left: 40px;
    -webkit-border-radius: 0 0 1.5em 1.5em;
    -moz-border-radius: 0 0 1.5em 1.5em;
    border-radius: 0 0 1.5em 1.5em;
}
.clear {
    clear: both;
}
</pre>
<p style="text-align: center;"><a title="CSS Android Logo" href="http://demo.superdit.com/css/android_logo" target="_blank">View Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/04/10/creating-basic-android-logo-with-css/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>20 High Quality Android Device PSD Resources</title>
		<link>http://superdit.com/2011/01/13/20-high-quality-android-device-psd-resources/</link>
		<comments>http://superdit.com/2011/01/13/20-high-quality-android-device-psd-resources/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 11:36:23 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=4030</guid>
		<description><![CDATA[Maybe this resources absolutely for Android fanboy, here are the great quality of PSD mostly designed by Alexander Gillis (zandog) from Deviant Art, when I browse through many web resources, forum, and other blogs, some of them has been featured before, and I compiled all of this in case you never seen before. Here they<a href="http://superdit.com/2011/01/13/20-high-quality-android-device-psd-resources/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p><a title="20 High Quality Android PSD" href="http://superdit.com/2011/01/13/20-high-quality-android-device-psd-resources/" target="_blank"><img class="aligncenter size-full wp-image-4063" title="High Quality Android PSD" src="http://superdit.com/wp-content/uploads/2011/01/resized.jpg" alt="" width="500" height="204" /></a></p>
<p>Maybe this resources absolutely for Android fanboy, here are the great quality of PSD mostly designed by <a title="Alexander Gillis" href="http://www.alexandergillis.com/" target="_blank">Alexander Gillis</a> (<a href="http://zandog.deviantart.com/" target="_blank">zandog</a>) from <a title="Deviant Art" href="http://deviantart.com" target="_blank">Deviant Art</a>, when I browse through many web resources, forum, and other blogs, some of them has been featured before, and I compiled all of this in case you never seen before. Here they are&#8230;<span id="more-4030"></span></p>
<h5>1. <a title="Sony Ericsson Xperia X10 by bharathp666 (Deviant Art)" href="http://bharathp666.deviantart.com/art/Sony-Ericsson-Xperia-X10-188805821" target="_self">Sony Ericsson Xperia X10</a></h5>
<p><a title="Sony Ericsson Xperia X10 by bharathp666 (Deviant Art)" href="http://bharathp666.deviantart.com/art/Sony-Ericsson-Xperia-X10-188805821" target="_blank"><img title="Sony Ericsson Xperia X10 by bharathp666 (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/20-sony_ericsson_xperia_x10_by_bharathp666-d34eri5.jpg" alt="" width="500" height="644" /></a></p>
<h5>2. <a title="Samsung Nexus S PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-Nexus-S-PSD-189929351" target="_blank">Samsung Nexus S .PSD</a></h5>
<p><a title="Samsung Nexus S PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-Nexus-S-PSD-189929351" target="_blank"><img title="Samsung Nexus S PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/06-samsung_nexus_s__psd_by_zandog-d352ufb.jpg" alt="" width="500" height="500" /></a></p>
<h5>3. <a title="HTC EVO 4G PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-EVO-4G-PSD-164531927" target="_blank">HTC EVO 4G .PSD</a></h5>
<p><a title="HTC EVO 4G PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-EVO-4G-PSD-164531927" target="_blank"><img title="HTC EVO 4G PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/04-htc_evo_4g__psd_by_zandog.jpg" alt="" width="500" height="500" /></a></p>
<h5>4. <a title="HTC G1 Dream Android PSD by zandog (Deviant Art))" href="http://zandog.deviantart.com/art/HTC-G1-Dream-Smartphone-PSD-152512050" target="_blank">HTC G1 Dream Smartphone .PSD</a></h5>
<p><a title="HTC G1 Dream Android PSD by zandog (Deviant Art))" href="http://zandog.deviantart.com/art/HTC-G1-Dream-Smartphone-PSD-152512050" target="_blank"><img class="alignnone" title="HTC Dream Android PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/01-htc_dream_android__psd_by_zandog.jpg" alt="" width="500" height="500" /></a></p>
<h5>5. <a title="HTC G2 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-G2-PSD-182148621" target="_blank">HTC G2 .PSD</a></h5>
<p><a title="HTC G2 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-G2-PSD-182148621" target="_blank"><img class="alignnone" title="HTC G2 PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/02-htc_g2__psd_by_zandog-d30g2rx.jpg" alt="" width="500" height="500" /></a></p>
<h5>6. <a title="HTC Desire HD PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Desire-HD-PSD-190238581" target="_blank">HTC Desire HD .PSD</a></h5>
<p><a title="HTC Desire HD PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Desire-HD-PSD-190238581" target="_blank"><img title="HTC Desire HD PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/05-htc_desire_hd__psd_by_zandog-d359h11.jpg" alt="" width="500" height="500" /></a></p>
<h5>7. <a title="Motorola Droid X PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-X-PSD-165481737" target="_blank">Motorola Droid X .PSD</a></h5>
<p><a title="Motorola Droid X PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-X-PSD-165481737" target="_blank"><img class="alignnone" title="Motorola Droid X PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/03-motorola_droid_x__psd_by_zandog.jpg" alt="" width="500" height="625" /></a></p>
<h5>8. <a title="Motorola Droid 2 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-2-PSD-180694347" target="_blank">Motorola Droid 2 .PSD</a></h5>
<p><a title="Motorola Droid 2 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-2-PSD-180694347" target="_blank"><img class="alignnone" title="Motorola Droid 2 PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/07-motorola_droid_2__psd_by_zandog-d2zkwnf.jpg" alt="" width="500" height="500" /></a></p>
<h5>9. <a title="Samsung Galaxy S PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-i9000-Galaxy-S-PSD-178972735" target="_blank">Samsung i9000 Galaxy S .PSD</a></h5>
<p><a title="Samsung i9000 Galaxy S PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-i9000-Galaxy-S-PSD-178972735" target="_blank"><img class="alignnone" title="Samsung Galaxy S PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/08-samsung_galaxy_s__psd_by_zandog-d2yk08v.jpg" alt="" width="500" height="500" /></a></p>
<h5>10. <a title="HTC Wildfire PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Wildfire-PSD-178808824" target="_blank">HTC Wildfire .PSD</a></h5>
<p><a title="HTC Wildfire PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Wildfire-PSD-178808824" target="_blank"><img class="alignnone" title="HTC Wildfire PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/09-htc_wildfire__psd_by_zandog-d2yghrs.jpg" alt="" width="500" height="500" /></a></p>
<h5>11. <a title="Google Nexus One Redux PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Google-Nexus-One-Redux-PSD-163644588" target="_blank">Google Nexus One Redux .PSD</a></h5>
<p><a title="Google Nexus One Redux PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Google-Nexus-One-Redux-PSD-163644588" target="_blank"><img class="alignnone" title="Google Nexus One Redux PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/10-google_nexus_one_redux__psd_by_zandog-d2pfgz0.jpg" alt="" width="500" height="375" /></a></p>
<h5>12. <a title="Motorola Droid PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-PSD-152356162" target="_blank">Motorola Droid .PSD</a></h5>
<p><a title="Motorola Droid PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Motorola-Droid-PSD-152356162" target="_blank"><img class="alignnone" title="Motorola Droid PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/11-motorola_droid__psd_by_zandog.jpg" alt="" width="500" height="600" /></a></p>
<h5>13. <a title="Samsung Galaxy Tab P1000 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-Galaxy-Tab-P1000-PSD-180537736" target="_blank">Samsung Galaxy Tab P1000 .PSD</a></h5>
<p><a title="Samsung Galaxy Tab P1000 PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/Samsung-Galaxy-Tab-P1000-PSD-180537736" target="_blank"><img class="alignnone" title="Samsung Galaxy Tab P1000 PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/12-samsung_galaxy_tab_p1000__psd_by_zandog-d2zhjt4.jpg" alt="" width="500" height="500" /></a></p>
<h5>14. <a title="HTC Saber HD Tablet PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-SABER-HD-Tablet-PSD-183861401" target="_blank">HTC SABER HD Tablet .PSD</a></h5>
<p><a title="HTC Saber HD Tablet PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-SABER-HD-Tablet-PSD-183861401" target="_blank"><img class="alignnone" title="HTC Saber HD Tablet PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/13-htc_saber_hd_tablet__psd_by_zandog-d31gsd5.jpg" alt="" width="500" height="500" /></a></p>
<h5>15. <a title="HTC Incredible Smartphone PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Incredible-Smartphone-PSD-160869996" target="_blank">HTC Incredible Smartphone .PSD</a></h5>
<p><a title="HTC Incredible Smartphone PSD by zandog (Deviant Art)" href="http://zandog.deviantart.com/art/HTC-Incredible-Smartphone-PSD-160869996" target="_blank"><img class="alignnone" title="HTC Incredible Smartphone PSD by zandog (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/15-htc_incredible_smartphone__psd_by_zandog-d2ns030.jpg" alt="" width="500" height="500" /></a></p>
<h5>16. <a title="HTC Aurora Concept by davinci1993 (Deviant Art)" href="http://davinci1993.deviantart.com/art/HTC-Aurora-Concept-191740808" target="_blank">HTC Aurora Concept</a></h5>
<p><a title="HTC Aurora Concept by davinci1993 (Deviant Art)" href="http://davinci1993.deviantart.com/art/HTC-Aurora-Concept-191740808" target="_blank"><img class="alignnone" title="HTC Aurora Concept by davinci1993 (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/18-htc_aurora_concept_by_davinci1993-d365o5k.jpg" alt="" width="500" height="500" /></a></p>
<h5>17. <a title="HTC HD2 Android V1 by andrewf (Deviant Art)" href="http://andrewf.deviantart.com/art/HTC-HD2-Android-v1-183132901" target="_blank">HTC HD2 Android. v1</a></h5>
<p><a title="HTC HD2 Android V1 by andrewf (Deviant Art)" href="http://andrewf.deviantart.com/art/HTC-HD2-Android-v1-183132901" target="_blank"><img class="alignnone" title="HTC HD2 Android V1 by andrewf (Deviant Art)" src="http://aditia.files.wordpress.com/2011/01/19-htc_hd2_android__v1_by_andrewf-d311691.jpg" alt="" width="500" height="483" /></a></p>
<h5>18. <a title="Android Music App Mockup PSD by thiago-silva" href="http://thiago-silva.deviantart.com/art/Android-Music-App-Mockup-PSD-184267573" target="_blank">Android Music App Mockup PSD</a></h5>
<p><a title="Android Music App Mockup PSD by thiago-silva" href="http://thiago-silva.deviantart.com/art/Android-Music-App-Mockup-PSD-184267573" target="_blank"><img class="alignnone" title="Android Music App Mockup PSD by thiago_silva" src="http://aditia.files.wordpress.com/2011/01/21-android_music_app_mockup_psd_by_thiago_silva-d31phrp.png" alt="" width="500" height="579" /></a></p>
<h5>19. <a title="HTC Hero Free Android UI" href="http://www.webdesignshock.com/freebies/free-photoshop-android-interface-gui/" target="_blank">HTC Hero Free Android UI</a></h5>
<p><a title="HTC Hero Free Android UI" href="http://www.webdesignshock.com/freebies/free-photoshop-android-interface-gui/" target="_blank"><img class="alignnone" title="HTC Hero Free PSD Android UI" src="http://aditia.files.wordpress.com/2011/01/27-free-psd-android-ui.jpg" alt="" width="500" height="623" /></a></p>
<h5>20. <a title="Android 2.0 GUI by thiago-silva" href="http://thiago-silva.deviantart.com/art/Android-2-0-2-1-GUI-142225947" target="_blank">Android GUI 2.0</a></h5>
<p><a title="Android 2.0 GUI by thiago-silva" href="http://thiago-silva.deviantart.com/art/Android-2-0-2-1-GUI-142225947" target="_self"><img class="alignnone" title="Android 2.0 GUI by thiago-silva" src="http://aditia.files.wordpress.com/2011/01/29-android_2_0_gui_by_thiago_silva.png" alt="" width="500" height="537" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2011/01/13/20-high-quality-android-device-psd-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Collection of Android Application Website Design</title>
		<link>http://superdit.com/2010/02/11/collection-of-android-application-website-design/</link>
		<comments>http://superdit.com/2010/02/11/collection-of-android-application-website-design/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 06:05:27 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Showcase]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=317</guid>
		<description><![CDATA[I have read some blog posts about great mobile application web design in WebDesignDev, WebDesignerDepot, Spyrestudios, Designreviver and Djdesignerlab for iPhone and android is one of mobile operation system platform that predicted will be booming in the next 2-3 years, and becoming the iPhone threat. There are many developer who already enter the android market<a href="http://superdit.com/2010/02/11/collection-of-android-application-website-design/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>I have read some blog posts about great mobile application web design in <a href="http://www.webdesigndev.com/photoshop/20-beautiful-and-inspirational-iphone-app-website-designs" target="_blank">WebDesignDev</a>, <a href="http://www.webdesignerdepot.com/2009/04/40-awesome-iphone-application-websites/" target="_blank">WebDesignerDepot</a>, <a href="http://spyrestudios.com/design-trends-25-coolest-iphone-app-web-designs/" target="_blank">Spyrestudios</a>, <a href="http://designreviver.com/inspiration/20-amazing-iphone-app-website/" target="_blank">Designreviver</a> and <a href="http://djdesignerlab.com/2009/12/17/30-creative-iphone-application-websites-collection/" target="_blank">Djdesignerlab</a> for iPhone and android is one of mobile operation system platform that predicted will be booming  in the next 2-3 years, and becoming the iPhone threat. There are many developer who already enter the  android market with building cool application, and they have great on  web design too, to promote their application. Here I found some great android application web site design, if you found another that I haven&#8217;t mention please inform me.</p>
<p><a href="http://www.trillian.im/learn/tour-android.html" target="_blank">Trillian</a></p>
<p><a href="http://www.trillian.im/learn/tour-android.html" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4079/4928774276_750f187218.jpg" alt="" width="433" height="500" /></a><span id="more-317"></span></p>
<p><a href="http://swypeinc.com/index.html" target="_blank">Swype</a></p>
<p><a href="http://swypeinc.com/index.html" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4114/4928773628_35119d97b0.jpg" alt="" width="500" height="340" /></a></p>
<p><a href="http://www.mint.com/features/android/" target="_blank">Mint</a></p>
<p><a href="http://www.mint.com/features/android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4080/4928773782_b0013bf7f5.jpg" alt="" width="500" height="407" /></a></p>
<p><a href="https://www.dropbox.com/android" target="_blank">Dropbox</a></p>
<p><a href="https://www.dropbox.com/android" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4101/4928773508_4ebb0bbfce.jpg" alt="" width="500" height="472" /></a></p>
<p><a href="http://www.tripit.com/uhp/android" target="_blank">Tripit</a></p>
<p><a href="http://www.tripit.com/uhp/android" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4115/4928774424_159cf2426d.jpg" alt="" width="500" height="438" /></a></p>
<p><a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=165849822&amp;tag=gmgamzn-20" target="_blank">Kindle For Android</a></p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4142/4928775040_e5080d4dbe.jpg" alt="" width="500" height="197" /></p>
<p><a href="http://www.google.com/mobile/shopper/" target="_blank">Google Shopper</a></p>
<p><a href="http://www.google.com/mobile/shopper/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4077/4928180351_e10015162e.jpg" alt="" width="500" height="255" /></a></p>
<p><a href="http://www.google.com/mobile/navigation/" target="_blank">Google Maps Navigation</a></p>
<p><a href="http://www.google.com/mobile/navigation/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4077/4928774748_21e1b15a6d.jpg" alt="" width="500" height="256" /></a></p>
<p><a href="http://www.google.com/mobile/goggles/" target="_blank">Google Goggles</a></p>
<p><a href="http://www.google.com/mobile/goggles/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4093/4928180249_173da6a9d2.jpg" alt="" width="500" height="263" /></a></p>
<p><a href="http://strokeapps.net/filmscore/" target="_blank">Filmscore</a></p>
<p><a href="http://strokeapps.net/filmscore/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4050/4634229349_f6ff706c1f.jpg" alt="" width="500" height="372" /></a></p>
<p><strong><a href="http://www.larvalabs.com/android/retrodefense.html" target="_blank">Retro Defense</a></strong></p>
<p><a href="http://www.larvalabs.com/android/retrodefense.html" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2773/4343243182_9b50dc2910.jpg" alt="" width="498" height="500" /></a></p>
<p><strong><a href="http://www.meebo.com/android/" target="_blank">Meebo</a></strong></p>
<p><a href="http://www.meebo.com/android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4016/4343255854_01e7a70fd5.jpg" alt="" width="500" height="447" /></a></p>
<p><strong><a href="http://www.somyac.com/recordoid/recordoid.html" target="_blank">Recordoid</a></strong></p>
<p><a href="http://www.somyac.com/recordoid/recordoid.html" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2764/4343256160_1831797cbc.jpg" alt="" width="500" height="369" /></a></p>
<p><strong><a href="http://weloveastrid.com/" target="_blank">Astrid</a></strong></p>
<p><a href="http://weloveastrid.com/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4050/4342519909_042335db12.jpg" alt="" width="500" height="274" /></a></p>
<p><strong><a href="http://www.evernote.com/about/download/android.php" target="_blank">Evernote</a></strong></p>
<p><a href="http://www.evernote.com/about/download/android.php" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2726/4343256630_1cd7a902ec.jpg" alt="" width="500" height="358" /></a></p>
<p><strong><a href="http://www.colorixgame.com/" target="_blank">Colorix</a></strong></p>
<p><a href="http://www.colorixgame.com/" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2764/4343257076_74284eda83.jpg" alt="" width="500" height="299" /></a></p>
<p><strong><a href="http://www.mygigbox.com/" target="_blank">Gigbox</a></strong></p>
<p><a href="http://www.mygigbox.com/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4002/4343257470_6dc7526f26_b.jpg" alt="" width="502" height="705" /></a></p>
<p><strong><a href="http://mobile.photoshop.com/android/" target="_blank">Photoshop Mobile</a></strong></p>
<p><a href="http://mobile.photoshop.com/android/" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2712/4343257606_ac70727efe.jpg" alt="" width="500" height="226" /></a></p>
<p><strong><a href="http://www.twofortyfouram.com/" target="_blank">Locale</a></strong></p>
<p><a href="http://www.twofortyfouram.com/" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2434/4342521169_607f9f2ea4.jpg" alt="" width="500" height="308" /></a></p>
<p><strong><a href="http://www.biggu.com/apps/shopsavvy-android/" target="_blank">ShopSavvy</a></strong></p>
<p><a href="http://www.biggu.com/apps/shopsavvy-android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4019/4342521483_43bd836846.jpg" alt="" width="430" height="500" /></a></p>
<p><strong><a href="https://snaptic.com/" target="_blank">Snaptic</a></strong></p>
<p><a href="https://snaptic.com/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4023/4342521637_31f94e9acf.jpg" alt="" width="500" height="336" /></a></p>
<p><strong><a href="http://twidroid.com/features/" target="_blank">Twidroid</a></strong></p>
<p><a href="http://twidroid.com/features/" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2793/4343258440_aa71beb99d_b.jpg" alt="" width="490" height="1024" /></a></p>
<p><strong><a href="http://brightkite.com/android" target="_blank">Brightkite</a></strong></p>
<p><a href="http://brightkite.com/android" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2718/4343258518_7f43c130aa.jpg" alt="" width="500" height="388" /></a></p>
<p><strong><a href="http://www.usatoday.com/android/" target="_blank">USAToday</a></strong></p>
<p><a href="http://www.usatoday.com/android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4031/4343258818_c55f09e3b1.jpg" alt="" width="489" height="500" /></a></p>
<p><strong><a href="http://www.amazon.com/gp/anywhere/sms/android" target="_blank">Amazon.com</a></strong></p>
<p><a href="http://www.amazon.com/gp/anywhere/sms/android" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4056/4342522415_8686e4be39.jpg" alt="" width="500" height="370" /></a></p>
<p><strong><a href="http://www.google.com/mobile/voice/" target="_blank">Google Voice</a></strong></p>
<p><a href="http://www.google.com/mobile/voice/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4036/4342522671_771da09a36.jpg" alt="" width="500" height="463" /></a></p>
<p><strong><a href="http://www.plinkart.com/" target="_blank">PlinkArt</a></strong></p>
<p><a href="http://www.plinkart.com/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4071/4342522781_c44c47d93f.jpg" alt="" width="500" height="294" /></a></p>
<p><strong><a href="http://www.istockmanager.com/android" target="_blank">iStockManager</a></strong></p>
<p><a href="http://www.istockmanager.com/android" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4017/4343259552_7599e6103b.jpg" alt="" width="500" height="332" /></a></p>
<p><strong><a href="http://www.babblerforandroid.com/" target="_blank">Babbler</a></strong></p>
<p><a href="http://www.babblerforandroid.com/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4059/4343259784_0f4580f69e.jpg" alt="" width="500" height="371" /></a></p>
<p><strong><a href="http://www.where.com/google-android/" target="_blank">Where</a></strong></p>
<p><a href="http://www.where.com/google-android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4006/4342523549_31b59fec4f.jpg" alt="" width="500" height="478" /></a></p>
<p><strong><a href="http://www.aldiko.com/features.html" target="_blank">Aldiko</a></strong></p>
<p><a href="http://www.aldiko.com/features.html" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2497/4343260472_3fe57cc321_b.jpg" alt="" width="502" height="662" /></a></p>
<p><strong><a href="http://www.opera.com/mobile/" target="_blank">Opera Mobile</a></strong></p>
<p><a href="http://www.opera.com/mobile/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4013/4472859488_372a6509a9.jpg" alt="" width="500" height="430" /></a></p>
<p><a href="http://products.aim.com/products/android" target="_blank"><strong>AIM</strong></a></p>
<p><a href="http://products.aim.com/products/android" target="_blank"><img class="alignnone" src="http://farm3.static.flickr.com/2791/4472859490_17d37dbc12.jpg" alt="" width="500" height="500" /></a></p>
<p><strong><a href="http://www.rememberthemilk.com/services/android/" target="_blank">Remember The Milk</a></strong></p>
<p><a href="http://www.rememberthemilk.com/services/android/" target="_blank"><img class="alignnone" src="http://farm5.static.flickr.com/4010/4484936145_b3309c05ff.jpg" alt="" width="500" height="455" /></a></p>
<p><a title="Sobees Mobile" href="http://www.sobees.com/download-sobees/sobees-mobile" target="_blank">Sobees</a></p>
<p><a title="Sobees Mobile" href="http://www.sobees.com/download-sobees/sobees-mobile" target="_blank"><img class="alignnone" title="Sobees Mobile" src="http://farm5.static.flickr.com/4152/4842721269_c18719a456.jpg" alt="Sobees Mobile" width="500" height="436" /></a></p>
<p><a title="Foursquare for Android" href="http://foursquare.com/android/" target="_blank">Foursquare</a></p>
<p><a title="Foursquare for Android" href="http://foursquare.com/android/" target="_blank"><img class="alignnone" title="Foursquare for Android" src="http://farm5.static.flickr.com/4126/4845497475_19e20e1fd1.jpg" alt="Foursquare for Android" width="500" height="412" /></a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h3>Retro DefenseR</h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2010/02/11/collection-of-android-application-website-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Android Desktop Wallpaper</title>
		<link>http://superdit.com/2009/11/29/google-android-desktopwallpaper/</link>
		<comments>http://superdit.com/2009/11/29/google-android-desktopwallpaper/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 00:07:00 +0000</pubDate>
		<dc:creator>aditia rahman</dc:creator>
				<category><![CDATA[Wallpaper]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://superdit.com/?p=203</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://irxn.deviantart.com/art/Android-Wallpaper-168171744" target="_blank"><img class="alignnone" src="http://i46.tinypic.com/rjmj2f.jpg" alt="" width="445" height="250" /></a><span id="more-203"></span></p>
<p><a href="http://b4ddy.deviantart.com/art/3D-Google-Android-159304920" target="_blank"><img class="alignnone" src="http://i40.tinypic.com/24ex46f.jpg" alt="" width="441" height="275" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/android-wallpaper3_1024x768.png" target="_blank"><img class="alignnone" src="http://www.android.com/media/wallpaper/android-wallpaper3_1024x768.png" alt="" width="442" height="332" /></a></p>
<p><a href="http://www.dreamscene.org/wallpapers/android.jpg" target="_blank"><img class="alignnone" src="http://www.dreamscene.org/wallpapers/android.jpg" alt="" width="441" height="247" /></a></p>
<p><a href="http://eg-art.deviantart.com/art/EgFox-Android-HD-2010-156084958" target="_blank"><img class="alignnone" src="http://i40.tinypic.com/2427xow.jpg" alt="" width="441" height="275" /></a></p>
<p><a href="http://weyd.deviantart.com/art/Google-Android-wallpaper-155132132" target="_blank"><img class="alignnone" src="http://i41.tinypic.com/10end6h.png" alt="" width="440" height="274" /></a></p>
<p><a href="http://i731.photobucket.com/albums/ww318/zo0o0ot/android-wallpaper4_1024x768.png" target="_blank"><img class="alignnone" src="http://i731.photobucket.com/albums/ww318/zo0o0ot/android-wallpaper4_1024x768.png" alt="" width="440" height="330" /></a></p>
<p><a href="http://fetuscakemix.deviantart.com/art/Android-107022957" target="_blank"><img class="alignnone" src="http://i40.tinypic.com/oabz8k.jpg" alt="" width="441" height="275" /></a></p>
<p><a href="http://read.pudn.com/downloads119/sourcecode/windows/506064/android_sdk_windows_m3-rc20a/docs/goodies/wallpaper/android-wallpaper1_1280x800.png" target="_blank"><img class="alignnone" src="http://read.pudn.com/downloads119/sourcecode/windows/506064/android_sdk_windows_m3-rc20a/docs/goodies/wallpaper/android-wallpaper1_1280x800.png" alt="" width="439" height="273" /></a></p>
<p><a href="http://clondike7.deviantart.com/art/Android-Wallpaper-150808158" target="_blank"><img class="alignnone" src="http://i43.tinypic.com/10qm9ma.png" alt="" width="440" height="275" /></a></p>
<p><a href="http://img245.imageshack.us/img245/6117/27649091.png" target="_blank"><img class="alignnone" src="http://img245.imageshack.us/img245/6117/27649091.png" alt="" width="440" height="274" /></a></p>
<p><a href="http://3.bp.blogspot.com/_5yzjvuTiP7Y/SwZfYIt2xLI/AAAAAAAAAK0/Qk8u3ZHR9d8/s1600/zedge_android_wp_1680x1050.jpg"><img class="alignnone" src="http://3.bp.blogspot.com/_5yzjvuTiP7Y/SwZfYIt2xLI/AAAAAAAAAK0/Qk8u3ZHR9d8/s1600/zedge_android_wp_1680x1050.jpg" alt="" width="440" height="273" /></a></p>
<p><a href="http://3.bp.blogspot.com/_5yzjvuTiP7Y/SwZfX0Oz1SI/AAAAAAAAAKs/BWXe2iGuZnA/s1600/zedge_wp02_1920x1200.jpg" target="_blank"><img class="alignnone" src="http://3.bp.blogspot.com/_5yzjvuTiP7Y/SwZfX0Oz1SI/AAAAAAAAAKs/BWXe2iGuZnA/s1600/zedge_wp02_1920x1200.jpg" alt="" width="440" height="273" /></a></p>
<p><a href="http://2.bp.blogspot.com/_5yzjvuTiP7Y/SwZfXrgHCVI/AAAAAAAAAKk/6ZPzcLKalBc/s1600/zedge_wp01_1920x1200.jpg"><img class="alignnone" src="http://2.bp.blogspot.com/_5yzjvuTiP7Y/SwZfXrgHCVI/AAAAAAAAAKk/6ZPzcLKalBc/s1600/zedge_wp01_1920x1200.jpg" alt="" width="440" height="271" /></a></p>
<p><a href="http://2.bp.blogspot.com/_5yzjvuTiP7Y/SwaRICF5xAI/AAAAAAAAALE/--sdOZl081E/s1600/zedge_wp03_1920x1200.jpg" target="_blank"><img class="alignnone" src="http://2.bp.blogspot.com/_5yzjvuTiP7Y/SwaRICF5xAI/AAAAAAAAALE/--sdOZl081E/s1600/zedge_wp03_1920x1200.jpg" alt="" width="439" height="273" /></a></p>
<p><a href="http://android.marvinlee.net/wp-content/uploads/2009/10/droid_does_alot.gif"><img class="alignnone" src="http://android.marvinlee.net/wp-content/uploads/2009/10/droid_does_alot.gif" alt="" width="439" height="272" /></a></p>
<p><a href="http://melkordu.deviantart.com/art/My-Android-146960927" target="_blank"><img class="alignnone" src="http://i40.tinypic.com/21cxw8z.jpg" alt="" width="439" height="274" /></a></p>
<p><a href="http://slackwi.se/files/images/wallpaper/android-wallpaper2_1600x1200.png" target="_blank"><img class="alignnone" src="http://slackwi.se/files/images/wallpaper/android-wallpaper2_1600x1200.png" alt="" width="441" height="329" /></a></p>
<p><a href="http://richd.com/pictures/richd-android1920.jpg" target="_blank"><img class="alignnone" src="http://richd.com/pictures/richd-android1920.jpg" alt="" width="440" height="273" /></a></p>
<p><a href="http://i285.photobucket.com/albums/ll66/ftpaddict/test/xnview_wallpaper_20090211.jpg" target="_blank"><img class="alignnone" src="http://i285.photobucket.com/albums/ll66/ftpaddict/test/xnview_wallpaper_20090211.jpg" alt="" width="442" height="353" /></a></p>
<p><a href="http://www.leckerfett.com/napf/andesk.png" target="_blank"><img class="alignnone" src="http://www.leckerfett.com/napf/andesk.png" alt="" width="441" height="352" /></a></p>
<p><a href="http://ewunix.deviantart.com/art/Android-161527201" target="_blank"><img class="alignnone" src="http://i39.tinypic.com/262b1qt.jpg" alt="" width="442" height="279" /></a></p>
<p><a href="http://selvo.deviantart.com/art/Android-Wallpaper-Pack-150297494" target="_blank"><img class="alignnone" src="http://fc07.deviantart.net/fs70/i/2010/013/6/7/Android_Wallpaper_Pack_by_Selvo.png" alt="" width="443" height="746" /></a></p>
<p><a href="http://fc06.deviantart.net/fs49/f/2009/198/c/3/Apple_Android_Diamonds_M_by_DeviantSith.jpg" target="_blank"><img class="alignnone" src="http://fc06.deviantart.net/fs49/f/2009/198/c/3/Apple_Android_Diamonds_M_by_DeviantSith.jpg" alt="" width="444" height="277" /></a></p>
<p><a href="http://img183.imageshack.us/img183/585/verizonandroid2.png" target="_blank"><img class="alignnone" src="http://img183.imageshack.us/img183/585/verizonandroid2.png" alt="" width="444" height="277" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/gif/androids.gif" target="_blank"><img class="alignnone" src="http://www.android.com/media/wallpaper/gif/androids.gif" alt="" width="445" height="333" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/gif/android_logo.gif"><img class="alignnone" src="http://www.android.com/media/wallpaper/gif/android_logo.gif" alt="" width="445" height="331" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/gif/cupcake_2009.gif" target="_blank"><img class="alignnone" src="http://www.android.com/media/wallpaper/gif/cupcake_2009.gif" alt="" width="445" height="332" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/gif/donut_2009.gif" target="_blank"><img class="alignnone" src="http://www.android.com/media/wallpaper/gif/donut_2009.gif" alt="" width="444" height="332" /></a></p>
<p><a href="http://www.android.com/media/wallpaper/gif/eclair_2009.gif" target="_blank"><img class="alignnone" src="http://www.android.com/media/wallpaper/gif/eclair_2009.gif" alt="" width="446" height="332" /></a></p>
<p><a href="http://talhalakath.deviantart.com/art/Android-150559246" target="_blank"><img class="alignnone" src="http://i49.tinypic.com/102tr10.jpg" alt="" width="445" height="278" /></a></p>
<p><a href="http://www.wallpapers10.net/computers/android/1612" target="_blank"><img class="alignnone size-full wp-image-1683" title="001r-Android" src="http://superdit.com/wp-content/uploads/2009/11/001r-Android.jpg" alt="" width="440" height="330" /></a></p>
<p><a href="http://www.fondos10.net/fondos-de-pantalla-de-informatica/android-espaciales-wallpapers-19784" target="_blank"><img class="alignnone size-full wp-image-1684" title="02r-Android-espaciales" src="http://superdit.com/wp-content/uploads/2009/11/02r-Android-espaciales.jpg" alt="" width="440" height="330" /></a></p>
<p><a href="http://www.blingcheese.com/wallpaper/view/6/google+wallpaper.htm" target="_blank"><img class="alignnone size-full wp-image-1685" title="03r-andesk1920x1200b" src="http://superdit.com/wp-content/uploads/2009/11/03r-andesk1920x1200b.png" alt="" width="440" height="275" /></a></p>
<p><a href="http://wall-e-ps.deviantart.com/art/Htc-android-wall-e-159490564" target="_blank"><img class="alignnone size-full wp-image-1686" title="04r-Htc_android_wall_e_by_wall_e_ps" src="http://superdit.com/wp-content/uploads/2009/11/04r-Htc_android_wall_e_by_wall_e_ps.jpg" alt="" width="440" height="275" /></a></p>
<p><a href="http://www.putorius.net/wallpapers.html" target="_blank"><img class="alignnone size-full wp-image-1687" title="05r-android_peak_black" src="http://superdit.com/wp-content/uploads/2009/11/05r-android_peak_black.jpg" alt="" width="440" height="248" /></a></p>
<p><a href="http://www.motorolafans.com/forums/google-g1/23834-g1-droidpaper.html" target="_blank"><img class="alignnone size-full wp-image-1688" title="06r-Android_Wallpaper" src="http://superdit.com/wp-content/uploads/2009/11/06r-Android_Wallpaper.jpg" alt="" width="440" height="352" /></a></p>
<p><a href="http://blog.punjabilokvirsa.com/2010/01/green-android/" target="_blank"><img class="alignnone size-full wp-image-1689" title="07r-727yaf" src="http://superdit.com/wp-content/uploads/2009/11/07r-727yaf.png" alt="" width="440" height="275" /></a></p>
<p><a href="http://forum.dailymobile.se/index.php?topic=16254.0" target="_blank"><img class="alignnone size-full wp-image-1690" title="08r-Android Army 3" src="http://superdit.com/wp-content/uploads/2009/11/08r-Android-Army-3.jpg" alt="" width="440" height="275" /></a></p>
<p><a href="http://www.pocketpc.ch/attachments/android-allgemein/26418d1271837589-android-desktop-wallpaper-android.jpg" target="_blank"><img class="alignnone size-full wp-image-1691" title="09r-Android" src="http://superdit.com/wp-content/uploads/2009/11/09r-Android.jpg" alt="" width="440" height="275" /></a></p>
<p><a href="http://img34.imageshack.us/img34/7292/awesomeandroid.jpg" target="_blank"><img class="alignnone size-full wp-image-1692" title="10r-awesomeandroid" src="http://superdit.com/wp-content/uploads/2009/11/10r-awesomeandroid.jpg" alt="" width="440" height="330" /></a></p>
<p><a href="http://img101.imageshack.us/img101/3965/awesomeandroidlightblue.png" target="_blank"><img class="alignnone size-full wp-image-1693" title="11r-awesomeandroidlightblue" src="http://superdit.com/wp-content/uploads/2009/11/11r-awesomeandroidlightblue.png" alt="" width="440" height="330" /></a></p>
<p><a href="http://img248.imageshack.us/img248/8003/awesomeandroidred.png" target="_blank"><img class="alignnone size-full wp-image-1694" title="12r-awesomeandroidred" src="http://superdit.com/wp-content/uploads/2009/11/12r-awesomeandroidred.png" alt="" width="440" height="330" /></a></p>
<p><a href="http://renato-ps.deviantart.com/art/Android-179000894" target="_blank"><img class="alignnone" src="http://fc06.deviantart.net/fs71/i/2010/255/2/e/android_by_renato_ps-d2yklz2.jpg" alt="" width="439" height="350" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superdit.com/2009/11/29/google-android-desktopwallpaper/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

