<?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>Ercan Baran - Android Developer -Actionscript &#38; Flex &#38; Air Developer &#124; Adobe Certified Expert</title>
	<atom:link href="http://www.ercanbaran.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ercanbaran.com</link>
	<description>public function life():webPage { return _myBlog; }</description>
	<lastBuildDate>Tue, 06 Dec 2011 08:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Showing flash objects in WebView</title>
		<link>http://www.ercanbaran.com/index.php/2011/12/06/showing-flash-objects-in-webview/</link>
		<comments>http://www.ercanbaran.com/index.php/2011/12/06/showing-flash-objects-in-webview/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 08:41:08 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=299</guid>
		<description><![CDATA[When I tried to show a web page in Android, I faced with a black screen since web page contained Flash content. After googling I found the easy solution. Just add a single line to application tag in your manifest file. android:hardwareAccelerated="true" Hope this can save your minutes!]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2011/12/06/showing-flash-objects-in-webview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Android library projects in custom builds</title>
		<link>http://www.ercanbaran.com/index.php/2011/10/12/using-android-library-projects-in-custom-builds/</link>
		<comments>http://www.ercanbaran.com/index.php/2011/10/12/using-android-library-projects-in-custom-builds/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 12:36:19 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=292</guid>
		<description><![CDATA[Android Library Projects are quite useful when you want to use your assets/resources in multiple projects.(about library projects) Projects work nicely on Eclipse. But if you work on a custom build you will be faced with some problems.(thread1, thread2)You will see that resources not accessible on custom builds so you have to copy your files [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2011/10/12/using-android-library-projects-in-custom-builds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open another application from current application on Android? &#8211; Different Approach</title>
		<link>http://www.ercanbaran.com/index.php/2011/09/13/how-to-open-another-application-from-current-application-on-android-different-approach/</link>
		<comments>http://www.ercanbaran.com/index.php/2011/09/13/how-to-open-another-application-from-current-application-on-android-different-approach/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 08:11:59 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[BLOG]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=286</guid>
		<description><![CDATA[Opening  an application from your own application is simple and you can find the solution everywhere like this : Intent i = new Intent&#40;Intent.ACTION_MAIN&#41;; i.setComponent&#40;new ComponentName&#40;&#34;app package name&#34;, &#34;app launch activity's classname&#34;&#41;&#41;; i.addCategory&#40;Intent.CATEGORY_LAUNCHER&#41;; startActivity&#40;i&#41;; The problem here is that if you do not know the application&#8217;s launch activity&#8217;s classname, you can not open the application. [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2011/09/13/how-to-open-another-application-from-current-application-on-android-different-approach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to close Android application when back button clicked?</title>
		<link>http://www.ercanbaran.com/index.php/2011/07/25/how-to-close-android-application-when-back-button-clicked/</link>
		<comments>http://www.ercanbaran.com/index.php/2011/07/25/how-to-close-android-application-when-back-button-clicked/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 20:10:57 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=269</guid>
		<description><![CDATA[The question and the answer is easy. Catch the back button and write finish() to close the application. But it may not work in some cases. I faced with one of this cases and found a different approach. To use onBackPressed method you have to use Android 2.2 and higher. Hope this also helps to [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2011/07/25/how-to-close-android-application-when-back-button-clicked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ReadyO is online for Android devices!</title>
		<link>http://www.ercanbaran.com/index.php/2011/06/07/readyo-is-online-for-android-devices/</link>
		<comments>http://www.ercanbaran.com/index.php/2011/06/07/readyo-is-online-for-android-devices/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 06:25:04 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[BLOG]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=256</guid>
		<description><![CDATA[I have worked a lot on Flash/Actionscript but for couple of weeks I only concentrate on Android and its native language. Of course Android SDK does not have animation capabilities as Flex&#38;Flash but I can say that its built-in MVC design pattern makes it perfect for multi-language &#38; multi-purpose applications. My new company ARDIC wanted [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2011/06/07/readyo-is-online-for-android-devices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PB Freekick is on air!</title>
		<link>http://www.ercanbaran.com/index.php/2010/08/30/pb-freekick-is-on-air/</link>
		<comments>http://www.ercanbaran.com/index.php/2010/08/30/pb-freekick-is-on-air/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 21:18:40 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=245</guid>
		<description><![CDATA[Up to now I&#8217;ve developed many flash games for websites and they&#8217;ve played over 50M all over the world. Don&#8217;t you believe me? Take a look at these games : game1 , game2 . I decided to make a freekick game that belongs to me.  My friend Aykut prepared the graphics and I coded than [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2010/08/30/pb-freekick-is-on-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to load Flex4 swf files into Flex3 application or vice versa?</title>
		<link>http://www.ercanbaran.com/index.php/2010/06/20/how-to-load-flex4-swf-files-into-flex3-application-or-vice-versa/</link>
		<comments>http://www.ercanbaran.com/index.php/2010/06/20/how-to-load-flex4-swf-files-into-flex3-application-or-vice-versa/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 21:37:33 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[BLOG]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=238</guid>
		<description><![CDATA[I think the title of the post explains the problem :) Loading a swf file into a Flex project is simple : SWFLoader ! I made a project by Flex4SDK and got the swf output named as LoadMe.swf . Then I tried to load LoadMe.swf file into my Flex3 project by this line of code [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2010/06/20/how-to-load-flex4-swf-files-into-flex3-application-or-vice-versa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Adobe Air applications on Android Emulator?</title>
		<link>http://www.ercanbaran.com/index.php/2010/06/09/how-to-install-adobe-air-applications-to-android-emulator/</link>
		<comments>http://www.ercanbaran.com/index.php/2010/06/09/how-to-install-adobe-air-applications-to-android-emulator/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 22:46:08 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Air]]></category>
		<category><![CDATA[BLOG]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=190</guid>
		<description><![CDATA[https://prerelease.adobe.com/callout/default.html?callid={AEF64EB4-A977-4317-909A-14AD8014BA21}]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2010/06/09/how-to-install-adobe-air-applications-to-android-emulator/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Adobe Certified Expert now! (Flex3 with Air)</title>
		<link>http://www.ercanbaran.com/index.php/2010/05/15/adobe-certified-expert-now-flex3-with-air/</link>
		<comments>http://www.ercanbaran.com/index.php/2010/05/15/adobe-certified-expert-now-flex3-with-air/#comments</comments>
		<pubDate>Sat, 15 May 2010 21:26:05 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=180</guid>
		<description><![CDATA[Today I passed ACE Flex 3 with Air Exam and I can say that it is really hard!  I accept I didn&#8217;t study so much but now I strongly recommend you to study every subject in details. Although my job is about flex development, I&#8217;m sure nearly 15 questions are about the subjects I&#8217;ve never [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2010/05/15/adobe-certified-expert-now-flex3-with-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop shortcut not work!</title>
		<link>http://www.ercanbaran.com/index.php/2010/03/23/desktop-shortcut-not-work/</link>
		<comments>http://www.ercanbaran.com/index.php/2010/03/23/desktop-shortcut-not-work/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 21:37:01 +0000</pubDate>
		<dc:creator>Ercan</dc:creator>
				<category><![CDATA[Air]]></category>

		<guid isPermaLink="false">http://www.ercanbaran.com/?p=167</guid>
		<description><![CDATA[There are hundreds of examples for minimizing Air Application to system tray. Of course application does not minimize itself to the system tray, it just changes its visibility to &#8220;false&#8220;. So you can change visible property from tray icon native menu or by clicking-double clicking. If you follow traditional procedures you will see that when [...]]]></description>
		<wfw:commentRss>http://www.ercanbaran.com/index.php/2010/03/23/desktop-shortcut-not-work/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

