<?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>Technical stuff &#187; Android</title>
	<atom:link href="http://www.tekkie.ro/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tekkie.ro</link>
	<description>Requirements are like water. They&#039;re easier to build on when they&#039;re frozen.</description>
	<lastBuildDate>Fri, 11 Jun 2010 11:33:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migrating phone book from Nokia XpressMusic to Android using a Mac</title>
		<link>http://www.tekkie.ro/quick-n-dirty/migrating-phone-book-nokia-xpressmusic-android-using-mac/</link>
		<comments>http://www.tekkie.ro/quick-n-dirty/migrating-phone-book-nokia-xpressmusic-android-using-mac/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 02:45:29 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=238</guid>
		<description><![CDATA[Looks complicated, huh? Especially when people say there&#8217;s no real Mac-to-Android sync software.
But we&#8217;re all tekkies here, we solve stuff, and don&#8217;t complain about it   And we&#8217;re using free software to do it, yummy!
All you need is PhoneDirector to get your Nokia agenda on the Mac. Just install it and follow the instructions, [...]]]></description>
			<content:encoded><![CDATA[<p>Looks complicated, huh? Especially when people say there&#8217;s no real Mac-to-Android sync software.</p>
<p>But we&#8217;re all tekkies here, we solve stuff, and don&#8217;t complain about it <img src='http://www.tekkie.ro/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  And we&#8217;re using free software to do it, yummy!</p>
<p>All you need is <a title="PhoneDirector download and instructions" href="http://www.macmedia.sk/pd.htm">PhoneDirector</a> to get your Nokia agenda on the Mac. Just install it and follow the instructions, you should be just fine. After you get all this, export them into a .vcf file, we&#8217;ll need it in a moment.</p>
<p>Now, to get this info in the Android is really a piece of cake. Go to the Contacts settings in Gmail and import the .vcf file you generated with PhoneDirector. Then go to your Android phone and sync your contacts. Ta-da! Welcome to the Google world!</p>
<p>NB: if you&#8217;re having a hard time finding the Contacts in the Gmail app, like I did, look immediately under your labels list.</p>
<p>The above steps weren&#8217;t good for you? Then you might need to take a look at <a href="http://pwoodford.blogspot.com/2009/05/htc-magic-vodafone-contacts.html">this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/quick-n-dirty/migrating-phone-book-nokia-xpressmusic-android-using-mac/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to change your layout in Android landscape / portrait mode</title>
		<link>http://www.tekkie.ro/quick-n-dirty/how-to-change-your-layout-in-android-landscape-portrait-mode/</link>
		<comments>http://www.tekkie.ro/quick-n-dirty/how-to-change-your-layout-in-android-landscape-portrait-mode/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 19:12:30 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=226</guid>
		<description><![CDATA[In the res folder we are used to having a layout folder, in which we keep the XML files which describe our application&#8217;s layouts. This trick will show you how to improve the view in landscape or portrait mode, whichever you might need.
How do I quickly change my emulator from portrait to landscape and viceversa?
Use [...]]]></description>
			<content:encoded><![CDATA[<p>In the <code>res</code> folder we are used to having a <code>layout</code> folder, in which we keep the XML files which describe our application&#8217;s layouts. This trick will show you how to improve the view in landscape or portrait mode, whichever you might need.</p>
<h3>How do I quickly change my emulator from portrait to landscape and viceversa?</h3>
<p>Use <code>Ctrl + F11</code> to test around.</p>
<h3>Can I only improve the layout and use no extra code?</h3>
<p>The short answer is <strong>yes</strong>, definitely.</p>
<p>The layouts in <code>/res/layout</code> are applied to both portrait and landscape, unless you specify otherwise. Let&#8217;s assume we have <code>/res/layout/home.xml</code> for our homepage and we want it to look differently in the 2 layout types.</p>
<ol>
<li>create folder <code>/res/layout-land</code> (here you will keep your landscape adjusted layouts)</li>
<li>copy <code>home.xml</code> there</li>
<li>make necessary changes to it</li>
<li>run the application in the emulator and test it using the <code>Ctrl + F11</code> combination</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/quick-n-dirty/how-to-change-your-layout-in-android-landscape-portrait-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use Android emulator debugging log</title>
		<link>http://www.tekkie.ro/quick-n-dirty/how-to-use-android-emulator-debugging-log/</link>
		<comments>http://www.tekkie.ro/quick-n-dirty/how-to-use-android-emulator-debugging-log/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 13:50:12 +0000</pubDate>
		<dc:creator>Georgiana</dc:creator>
				<category><![CDATA[Mobile development]]></category>
		<category><![CDATA[Quick and dirty]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://www.tekkie.ro/?p=224</guid>
		<description><![CDATA[
Launch the emulator
wait until it finished loading
open up a terminal
use the following command: adb logcat

Don&#8217;t forget to have fun!
]]></description>
			<content:encoded><![CDATA[<ol>
<li>Launch the emulator</li>
<li>wait until it finished loading</li>
<li>open up a terminal</li>
<li>use the following command: <code>adb logcat</code></li>
</ol>
<p>Don&#8217;t forget to have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekkie.ro/quick-n-dirty/how-to-use-android-emulator-debugging-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
