<?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>Android Development &#187; emulator</title>
	<atom:link href="http://www.droidnova.com/tag/emulator/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Tue, 27 Jul 2010 21:54:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Playing with graphics in Android &#8211; Part VII</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html#comments</comments>
		<pubDate>Mon, 06 Jul 2009 10:58:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=220</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
In our last part of this series, I will present a mini &#8220;game&#8221; based on the very famous game &#8220;Rock, Paper, Scissors&#8221;.
The follow features are fully implemented:

Add a rock, paper or scissors by touching the screen
Define speed and direction by touch-drag-release
On collision the loser [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-vii,220.html/feed</wfw:commentRss>
		<slash:comments>68</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part VI</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-vi,209.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-vi,209.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 09:18:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=209</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
The sixth part of this series will let you move the item you will add. As long as you touch the screen, you can change the position of the bitmap you want to add.
We simply have to add a temporary class variable in our [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-vi,209.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part V</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-v,188.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-v,188.html#comments</comments>
		<pubDate>Sat, 23 May 2009 19:59:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=188</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
Also be aware of a minor bug in the last series.
The fifth part of this series will let the icons move around.

What do we need, if we want to have the icons move around? Right, we need the direction of the movement and the [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-v,188.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part IV</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-iv,182.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-iv,182.html#comments</comments>
		<pubDate>Mon, 18 May 2009 10:59:30 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=182</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
The fourth part of the series will show you how to add more bitmaps on your screen.
First we have to add is graphic class containing a bitmap and the coordinates where it is located.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class GraphicObject &#123;
    private Bitmap _bitmap;
   [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-iv,182.html/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part III</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-iii,176.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-iii,176.html#comments</comments>
		<pubDate>Mon, 18 May 2009 08:28:13 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=176</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
The third part of this series will add some interactivity to our little application. We will add the possibility the icon appears at the point you touch the screen.
Just to remember, we have 3 classes: Tutorial2D (our Activity class), Panel (our SurfaceView class) and [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-iii,176.html/feed</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part II</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html#comments</comments>
		<pubDate>Tue, 12 May 2009 12:41:21 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=160</guid>
		<description><![CDATA[You are new to this series? Please start with the first part.
The second part of this series will show what you have to change to switch from using the View class to SurfaceView class.
Just to remember, our last code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.droidnova.android.tutorial2d;
&#160;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
&#160;
public class Tutorial2D extends Activity &#123;
  [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html/feed</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>Playing with graphics in Android &#8211; Part I</title>
		<link>http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html</link>
		<comments>http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html#comments</comments>
		<pubDate>Wed, 06 May 2009 13:55:56 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[graphic]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=147</guid>
		<description><![CDATA[The first part of this series will show you, how to display an image in a normal View.
First we create a new Project with the activity named Tutorial2D.
We will see this:

1
2
3
4
5
6
7
8
9
10
11
12
13
package com.droidnova.android.tutorial2d;
&#160;
import android.app.Activity;
import android.os.Bundle;
&#160;
public class Tutorial2D extends Activity &#123;
&#160;
    @Override
    public void onCreate&#40;Bundle savedInstanceState&#41; &#123;
     [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html/feed</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Ever tried &#8216;localhost&#8217; with the android emulator ?</title>
		<link>http://www.droidnova.com/ever-tried-localhost-with-the-android-emulator,102.html</link>
		<comments>http://www.droidnova.com/ever-tried-localhost-with-the-android-emulator,102.html#comments</comments>
		<pubDate>Thu, 12 Mar 2009 10:17:05 +0000</pubDate>
		<dc:creator>Claudio</dc:creator>
				<category><![CDATA[emulator]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=102</guid>
		<description><![CDATA[It might be obvious linux savvy folks, but trying to access localhost or 127.0.0.1 with the android emulator in order to access a local server for testing won&#8217;t get you anywhere. That&#8217;s because the IP is used internally by the undlying linux as you might have guessed.
Luckily there&#8217;s an IP you can use to achieve [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/ever-tried-localhost-with-the-android-emulator,102.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Make use of simple multilanguage support</title>
		<link>http://www.droidnova.com/make-use-of-simple-multilanguage-support,85.html</link>
		<comments>http://www.droidnova.com/make-use-of-simple-multilanguage-support,85.html#comments</comments>
		<pubDate>Fri, 06 Mar 2009 13:30:48 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[sources]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=85</guid>
		<description><![CDATA[In our little sample application we used the strings.xml to define static texts.
If you want to use the build-in multi-language support you just have to follow some easy conventions.
To use localization for strings you have to add a new directory to res/ and name it &#8220;values-de&#8221; for the german language.
Create a strings.xml in this directory [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/make-use-of-simple-multilanguage-support,85.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Set up SD card for your android emulator</title>
		<link>http://www.droidnova.com/set-up-sd-card-for-your-android-emulator,26.html</link>
		<comments>http://www.droidnova.com/set-up-sd-card-for-your-android-emulator,26.html#comments</comments>
		<pubDate>Fri, 27 Feb 2009 17:39:51 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[emulator]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[sd card]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=26</guid>
		<description><![CDATA[After the discussion about the restriction concerning downloading and installation of paid applications on developer devices we at least want to simulate installation of free applications on our emulator over the web.
This is the short tutorial how to accomplish that.

The first thing we needed was an application to install so we took the one we [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/set-up-sd-card-for-your-android-emulator,26.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->