<?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>The Developer&#039;s Info &#187; Android filesystem</title>
	<atom:link href="http://thedevelopersinfo.com/category/android/android-how-to/android-filesystem/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedevelopersinfo.com/</link>
	<description>Resource which helps to developers to learn and use new technologies and application frameworks.</description>
	<lastBuildDate>Sun, 21 Aug 2011 09:30:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Working with SDCard&#8217;s filesystem in Android</title>
		<link>http://thedevelopersinfo.com//2010/01/13/working-with-sdcards-filesystem-in-android/</link>
		<comments>http://thedevelopersinfo.com//2010/01/13/working-with-sdcards-filesystem-in-android/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 16:44:19 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1087</guid>
		<description><![CDATA[<p>It is very easy to work with SDCard in Android. Here we are working with File objects as with standard Java I/O operations. In this article I am going to show how to read, write, create files and how to create a folder in SDCard.</p> <p>Let&#8217;s look from the beginning.</p> <p>Firstly need to add permission <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/01/13/working-with-sdcards-filesystem-in-android/">Working with SDCard&#8217;s filesystem in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/01/13/working-with-sdcards-filesystem-in-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using XML file resources in Android</title>
		<link>http://thedevelopersinfo.com//2009/12/14/using-xml-file-resources-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/12/14/using-xml-file-resources-in-android/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 13:08:38 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=775</guid>
		<description><![CDATA[<p>In Android application you can use /res/xml XML files. These files are different than other Android resources. They are different from raw files, you don’t use a stream to access them because they are compiled into an efficient binary form when deployed, and they are different from other resources and they can be of any <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/14/using-xml-file-resources-in-android/">Using XML file resources in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/14/using-xml-file-resources-in-android/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using files as raw resources in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/27/using-files-as-raw-resources-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/27/using-files-as-raw-resources-in-android/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 15:54:49 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=575</guid>
		<description><![CDATA[<p>Why need such type of resources, we can get data from /assets, /res folders and now I am going to show /res/raw folder.</p> <p>It is simple, raw resources are not compiled by the platform, they available as raw files and these files can refer to any type of files. When you need to include raw <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/27/using-files-as-raw-resources-in-android/">Using files as raw resources in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/27/using-files-as-raw-resources-in-android/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using filesystem in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/26/using-filesystem-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/26/using-filesystem-in-android/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 16:09:56 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=557</guid>
		<description><![CDATA[<p>You can use Android&#8217;s filesystem the same as you use it in your life. Creating, editing, deleting, reading and etc.</p> <p>I want to remember that filesystem is based on Linux. Android allows to use full advantages of java.io package when you are working with it without limitations.</p> <p>What type of &#8220;files&#8221; you can access?</p> files, directories, etc <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/26/using-filesystem-in-android/">Using filesystem in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/26/using-filesystem-in-android/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting SharedPreferences from other application in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/25/getting-sharedpreferences-from-other-application-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/25/getting-sharedpreferences-from-other-application-in-android/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 16:10:44 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=529</guid>
		<description><![CDATA[<p>As I wrote in previous post, where I described how to use preferences system, SharedPreferences object can be created and opened with Context mode constants. These constants allows to define who has access to what preference. Also it is not a secret that data contains in xml file. As I said constants allows to define <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/25/getting-sharedpreferences-from-other-application-in-android/">Getting SharedPreferences from other application in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/25/getting-sharedpreferences-from-other-application-in-android/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Using SharedPreferences in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/19/using-preferences-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/19/using-preferences-in-android/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 19:58:00 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=500</guid>
		<description><![CDATA[<p>Android has a mechanism which called preferences system for saving simple key-value pairs of primitive data types within applications. This mechanism works through SharedPreferences object. Preferences system stores data in xml file. If this file doesn&#8217;t exists Android will create automatically one. Preferences can be private or be accessible to other application. You can use it for storing some global <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/19/using-preferences-in-android/">Using SharedPreferences in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/19/using-preferences-in-android/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using assets in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/17/using-assets-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/17/using-assets-in-android/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 10:46:48 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android filesystem]]></category>
		<category><![CDATA[Android how to]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=478</guid>
		<description><![CDATA[<p>Android offers one more directory where you can keep files which also will be included in package. This directory called /assets. The difference between /res and /assets is that Android doesn&#8217;t generate IDs for assets content. You need to specify relative path and name for files inside /assets. I am going to show simple example <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/17/using-assets-in-android/">Using assets in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/17/using-assets-in-android/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.452 seconds -->

