<?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 other</title>
	<atom:link href="http://thedevelopersinfo.com/category/android/android-how-to/other-android-how-to-android/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>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>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>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>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>
		<item>
		<title>Image saving to the filesystem in Android</title>
		<link>http://thedevelopersinfo.com//2009/12/18/image-saving-to-the-filesystem-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/12/18/image-saving-to-the-filesystem-in-android/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 16:24: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=928</guid>
		<description><![CDATA[<p>Sometimes after some operations with image you want to save this image to the filesystem. How? Can I use FileOutputStream for this operation? Sure, you can. Here we will use Bitmap object which is representing an image. Bitmap class has great method which is helpful for us when we want to write image to the <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/18/image-saving-to-the-filesystem-in-android/">Image saving to the filesystem in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/18/image-saving-to-the-filesystem-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting applications after boot up in Android</title>
		<link>http://thedevelopersinfo.com//2009/12/18/starting-applications-after-bootup-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/12/18/starting-applications-after-bootup-in-android/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 13:43:35 +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=920</guid>
		<description><![CDATA[<p>There are applications which should starts automatically after the Android phone is booted up. I am going to show how to create such application. There are 3 things which need to do: 1) In AndroidManifest.xml need to add receiver:</p> &#60;receiver android:enabled="true" android:name=".AutostartReceiver"&#62; &#60;intent-filter&#62; &#60;action android:name="android.intent.action.BOOT_COMPLETED" /&#62; &#60;/intent-filter&#62; &#60;/receiver&#62; <p>under &#60;application&#62; section 2) Add permission in AndroidManifest.xml:</p> &#60;uses-permission <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/18/starting-applications-after-bootup-in-android/">Starting applications after boot up in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/18/starting-applications-after-bootup-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image resizing in Android</title>
		<link>http://thedevelopersinfo.com//2009/12/17/image-resizing-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/12/17/image-resizing-in-android/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 09:53:08 +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=906</guid>
		<description><![CDATA[<p>When you work with images in Android , you can not only set this image as background image . Android allows a lot of things which you can do with an image object. Here I want to show how easy is to resize an image (Bitmap object) using Matrix class. This practice is very useful.</p> <p>In <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/17/image-resizing-in-android/">Image resizing in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/17/image-resizing-in-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing non-market application in Android phone</title>
		<link>http://thedevelopersinfo.com//2009/12/16/installing-non-market-application-in-android-phone/</link>
		<comments>http://thedevelopersinfo.com//2009/12/16/installing-non-market-application-in-android-phone/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 08:50:17 +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=856</guid>
		<description><![CDATA[<p>I have received some identical questions by e-mail. People ask me how to install non-market application in Android phone. It is simple, by default Android works only with applications from Android Market, for allowing to install non-market application need to configure Android phone: Settings-&#62;Applications-&#62;Unknown sources</p> <p>That&#8217;s all. As you can see it is very easy. <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/12/16/installing-non-market-application-in-android-phone/">Installing non-market application in Android phone</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/12/16/installing-non-market-application-in-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opening browser with specific URI in Android</title>
		<link>http://thedevelopersinfo.com//2009/11/30/opening-browser-with-specific-ur-in-android/</link>
		<comments>http://thedevelopersinfo.com//2009/11/30/opening-browser-with-specific-ur-in-android/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 09:40:32 +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=603</guid>
		<description><![CDATA[<p>Sometimes you need to open browser with specific URI from your application. For example you want to show application&#8217;s page and so on. This operation is very simple. You need to use Activity as usual you use it for walking from one activity to other. In this post I am going to show snippet of <span style="color:#777"> . . . &#8594; Read More: <a href="http://thedevelopersinfo.com//2009/11/30/opening-browser-with-specific-ur-in-android/">Opening browser with specific URI in Android</a></span>


No related posts.]]></description>
		<wfw:commentRss>http://thedevelopersinfo.com//2009/11/30/opening-browser-with-specific-ur-in-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

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

