<?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 how to</title>
	<atom:link href="http://thedevelopersinfo.com/category/android/android-how-to/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>Using Sound Recorder activity for capturing audio in Android</title>
		<link>http://thedevelopersinfo.com//2010/03/17/using-sound-recorder-activity-for-capturing-audio-in-android/</link>
		<comments>http://thedevelopersinfo.com//2010/03/17/using-sound-recorder-activity-for-capturing-audio-in-android/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 20:57:36 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android multimedia]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1473</guid>
		<description><![CDATA[<p>One more solution for capturing audio in Android. You can use existing application which can capture audio for you. I am going to show example which shows how to start Sound Recorder activity:</p> import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.provider.MediaStore; import android.view.View; import android.widget.Button; /** * This class shows how to run Sound Recorder <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/03/17/using-sound-recorder-activity-for-capturing-audio-in-android/">Using Sound Recorder activity for capturing audio in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/17/using-sound-recorder-activity-for-capturing-audio-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Capturing audio in Android</title>
		<link>http://thedevelopersinfo.com//2010/03/17/capturing-audio-in-android/</link>
		<comments>http://thedevelopersinfo.com//2010/03/17/capturing-audio-in-android/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 19:49:24 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android multimedia]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1452</guid>
		<description><![CDATA[<p>In this post I am going to show how to capture audio in Android. Android allows to capture audio in very easy manner. But today I spent 3 hours for creating working example. I don&#8217;t know why I spent so much time, maybe because it is first time when I tried to work with multimedia <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/03/17/capturing-audio-in-android/">Capturing audio in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/03/17/capturing-audio-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing running services in Android</title>
		<link>http://thedevelopersinfo.com//2010/02/01/showing-running-services-in-android/</link>
		<comments>http://thedevelopersinfo.com//2010/02/01/showing-running-services-in-android/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:16:12 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1106</guid>
		<description><![CDATA[<p>Here I want to share snippet of code which I found when I tried to get all services which are running in Android. It is very simple and useful.</p> public class Main extends Activity { private static String APP_TAG = "tag"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE); List&#60;ActivityManager.RunningServiceInfo&#62; <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/02/01/showing-running-services-in-android/">Showing running services in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/02/01/showing-running-services-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Viewing android.R.drawable images</title>
		<link>http://thedevelopersinfo.com//2010/01/13/viewing-android-r-drawable-images/</link>
		<comments>http://thedevelopersinfo.com//2010/01/13/viewing-android-r-drawable-images/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 11:14:21 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1076</guid>
		<description><![CDATA[<p>How often do you want to see what kind of images are in android.R.drawable package? Personally, I very often look at them. And the big problem is to see them at first time, because you don&#8217;t know where they are. This post should resolve this problem. At this point we have 2 ways:</p> simple &#8211; <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/01/13/viewing-android-r-drawable-images/">Viewing android.R.drawable images</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/01/13/viewing-android-r-drawable-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SDCard image for Android emulator in Ubuntu Linux</title>
		<link>http://thedevelopersinfo.com//2010/01/11/using-sdcard-image-for-android-emulator-in-ubuntu-linux/</link>
		<comments>http://thedevelopersinfo.com//2010/01/11/using-sdcard-image-for-android-emulator-in-ubuntu-linux/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:28:34 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android tools]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1062</guid>
		<description><![CDATA[<p>It is my first working day in this year and I started it with installing Ubuntu Linux 9.10 on my PC.</p> <p>Why I need this system? I want to try use it in my development environment. I used Windows XP, not Vista . First of all I found that emulator instance works slowly than in <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2010/01/11/using-sdcard-image-for-android-emulator-in-ubuntu-linux/">Using SDCard image for Android emulator in Ubuntu Linux</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2010/01/11/using-sdcard-image-for-android-emulator-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking Android SDK version</title>
		<link>http://thedevelopersinfo.com//2009/12/23/checking-android-sdk-version/</link>
		<comments>http://thedevelopersinfo.com//2009/12/23/checking-android-sdk-version/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 19:49:23 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1039</guid>
		<description><![CDATA[<p>I want to show how you can get Android SDK version from code. It is very simple:</p> String version = Build.VERSION.RELEASE; <p>This one returns SDK version (2.0.1, 2.0, 1.6).</p> int apiLevel = Build.VERSION.SDK_INT; <p>This one returns API Level (6, 5, 4).</p> <p>&#160;</p> <p>If you’d like to get the latest posts as soon as they’re published, <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/23/checking-android-sdk-version/">Checking Android SDK version</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/23/checking-android-sdk-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Sony-Ericsson XPERIA X10 add-on for the Android SDK</title>
		<link>http://thedevelopersinfo.com//2009/12/23/using-sony-ericsson-xperia-x10-add-on-for-the-android-sdk/</link>
		<comments>http://thedevelopersinfo.com//2009/12/23/using-sony-ericsson-xperia-x10-add-on-for-the-android-sdk/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 10:56:22 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android tools]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1016</guid>
		<description><![CDATA[<p>Sony-Ericsson published XPERIA X10 addon for Android SDK and I tried to use it in my work. All details you can find here.Installation is simple. From link which I posted above you can download add-on and Installation guide. But I also want to provide these easy steps:</p> Download and install Android SDK Download Sony-Ericsson XPERIA <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/23/using-sony-ericsson-xperia-x10-add-on-for-the-android-sdk/">Using Sony-Ericsson XPERIA X10 add-on for the Android SDK</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/23/using-sony-ericsson-xperia-x10-add-on-for-the-android-sdk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking if camera presents in Android device</title>
		<link>http://thedevelopersinfo.com//2009/12/22/checking-if-camera-presents-in-android-device/</link>
		<comments>http://thedevelopersinfo.com//2009/12/22/checking-if-camera-presents-in-android-device/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:35:56 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=1012</guid>
		<description><![CDATA[<p>Today I tried some ideas with camera in Android and found that there is an easy way to check if camera presents in Android device. Here I am going to show example which shows how to check it. Example:</p> import android.app.Activity; import android.os.Bundle; import android.util.Log; /** * This activity checks if device has camera * <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/22/checking-if-camera-presents-in-android-device/">Checking if camera presents in Android device</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/22/checking-if-camera-presents-in-android-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in Android</title>
		<link>http://thedevelopersinfo.com//2009/12/22/image-rotating-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/12/22/image-rotating-in-android/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:28:42 +0000</pubDate>
		<dc:creator>Oleg Mazurashu</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Android how to]]></category>
		<category><![CDATA[Android other]]></category>

		<guid isPermaLink="false">http://thedevelopersinfo.com/?p=941</guid>
		<description><![CDATA[<p>There is an easy way for image rotating in Android from code. I am going to show example. Here I will use application&#8217;s icon as image and Matrix class. Example:</p> import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Matrix; import android.graphics.drawable.BitmapDrawable; import android.os.Bundle; import android.view.ViewGroup.LayoutParams; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.ImageView.ScaleType; /** * This Activity shows <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/22/image-rotating-in-android/">Image rotating in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/22/image-rotating-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

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

