<?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>PALLE Technologies blog</title>
	<atom:link href="http://techpalle.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://techpalle.com/blog</link>
	<description>Welcome to Palle Technologies</description>
	<lastBuildDate>Mon, 01 Apr 2013 04:16:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What is the real advantage of Interfaces ?</title>
		<link>http://techpalle.com/blog/2013/04/01/what-is-the-real-advantage-of-interfaces/</link>
		<comments>http://techpalle.com/blog/2013/04/01/what-is-the-real-advantage-of-interfaces/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 04:16:19 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[.Net Tutorials]]></category>
		<category><![CDATA[C# FAQ]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=556</guid>
		<description><![CDATA[Interfaces are useful for making contracts between developers.<p><a href="http://techpalle.com/blog/2013/04/01/what-is-the-real-advantage-of-interfaces/">What is the real advantage of Interfaces ?</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2013/04/01/what-is-the-real-advantage-of-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difference between Equals and Reference Equals method</title>
		<link>http://techpalle.com/blog/2012/07/06/difference-between-equals-and-reference-equals-method/</link>
		<comments>http://techpalle.com/blog/2012/07/06/difference-between-equals-and-reference-equals-method/#comments</comments>
		<pubDate>Fri, 06 Jul 2012 07:55:34 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[.NET Framework FAQ]]></category>
		<category><![CDATA[C# FAQ]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=545</guid>
		<description><![CDATA[1. ReferenceEquals and Equals methods behaves same for Reference types but it differs for value types. 2.ReferenceEquals is a Static method and hence we cannot override this method where as Equals method we can override this method. Ex1: bool b=0.Equals(0); bool b1=Object.ReferenceEquals(0, 0); Response.Write(b); Ex2: //Write this code in the main method. Palle p1 = [...]<p><a href="http://techpalle.com/blog/2012/07/06/difference-between-equals-and-reference-equals-method/">Difference between Equals and Reference Equals method</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/07/06/difference-between-equals-and-reference-equals-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android training : Services FAQs</title>
		<link>http://techpalle.com/blog/2012/03/24/android-training-services-faqs/</link>
		<comments>http://techpalle.com/blog/2012/03/24/android-training-services-faqs/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 13:43:34 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=541</guid>
		<description><![CDATA[SERVICES What is a service? A Service is a component that can perform long-running operations in the background and does not provide a user interface. Should I use service only for above purpose? No, there is another purpose, if you want to share some functionality with other application, then use Service. Using binder IPC one can share [...]<p><a href="http://techpalle.com/blog/2012/03/24/android-training-services-faqs/">Android training : Services FAQs</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/03/24/android-training-services-faqs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android training: Broadcast Receiver example, how it looks like..</title>
		<link>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receiver-example-how-it-looks-like/</link>
		<comments>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receiver-example-how-it-looks-like/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 13:59:10 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=538</guid>
		<description><![CDATA[package com.techpalle.reciver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.widget.Toast; public class myreciver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { // TODO Auto-generated method stub /* * Here don&#8217;t try to do anything which takes more time say * networking sessions, sd card preparation, image uploading, DB reading etc. [...]<p><a href="http://techpalle.com/blog/2012/03/09/android-training-broadcast-receiver-example-how-it-looks-like/">Android training: Broadcast Receiver example, how it looks like..</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receiver-example-how-it-looks-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>android training: broadcast receivers</title>
		<link>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receivers/</link>
		<comments>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receivers/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 13:16:57 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=532</guid>
		<description><![CDATA[                                                ANDROID training: broadcast receivers &#160; Broadcast receivers Broadcast receivers are something which will get triggered on some broadcasted message. One can choose to respond to those broad cast messages by registering the [...]<p><a href="http://techpalle.com/blog/2012/03/09/android-training-broadcast-receivers/">android training: broadcast receivers</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/03/09/android-training-broadcast-receivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android training: Eclipse over all view in android application development.</title>
		<link>http://techpalle.com/blog/2012/03/02/android-training-eclipse-over-all-view-in-android-application-development/</link>
		<comments>http://techpalle.com/blog/2012/03/02/android-training-eclipse-over-all-view-in-android-application-development/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 12:31:24 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=524</guid>
		<description><![CDATA[Android training: Eclipse over all view in android application development. is a post from: techpalle.com<p><a href="http://techpalle.com/blog/2012/03/02/android-training-eclipse-over-all-view-in-android-application-development/">Android training: Eclipse over all view in android application development.</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/03/02/android-training-eclipse-over-all-view-in-android-application-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://techpalle.com/blog/wp-content/uploads/2012/03/ECLIPSE-over-all-view.png' length ='216192'  type='image/jpg' />	</item>
		<item>
		<title>Android training: Activity life cycle phases.</title>
		<link>http://techpalle.com/blog/2012/03/02/android-training-activity-life-cycle-phases/</link>
		<comments>http://techpalle.com/blog/2012/03/02/android-training-activity-life-cycle-phases/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 12:11:01 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=521</guid>
		<description><![CDATA[Android training: Activity life cycle phases. is a post from: techpalle.com<p><a href="http://techpalle.com/blog/2012/03/02/android-training-activity-life-cycle-phases/">Android training: Activity life cycle phases.</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/03/02/android-training-activity-life-cycle-phases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url='http://techpalle.com/blog/wp-content/uploads/2012/03/activity_lifecycle.png' length ='66148'  type='image/jpg' />	</item>
		<item>
		<title>Android training : activity life cycle phases, when to use which function.</title>
		<link>http://techpalle.com/blog/2012/02/28/android-training-activity-life-cycle-phases-when-to-use-which-function/</link>
		<comments>http://techpalle.com/blog/2012/02/28/android-training-activity-life-cycle-phases-when-to-use-which-function/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 16:45:25 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=514</guid>
		<description><![CDATA[Activity life cycle : different phases  onCreate()        &#8211; to &#8212;  onDestroy()  ==&#62; ENTIRE LIFE TIME of ACTIVITY  onStart()            &#8211; to &#8212;  onStop() ==&#62; VISIBLE LIFE TIME of ACTIVITY onResume()      &#8211; to  &#8211;  onPause() ==&#62; FOREGROUND/ ACTIVELY RUNNING LIFE TIME of ACTIVITY   When should I use different functions of Activity life cycle ? onCreate The system calls this [...]<p><a href="http://techpalle.com/blog/2012/02/28/android-training-activity-life-cycle-phases-when-to-use-which-function/">Android training : activity life cycle phases, when to use which function.</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/02/28/android-training-activity-life-cycle-phases-when-to-use-which-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android training: Starting one activity from other activity</title>
		<link>http://techpalle.com/blog/2012/02/23/android-training-starting-one-activity-from-other-activity/</link>
		<comments>http://techpalle.com/blog/2012/02/23/android-training-starting-one-activity-from-other-activity/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 08:11:42 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=509</guid>
		<description><![CDATA[Note: Before starting this program, it is expected that programmer should already create two activities with below names in androidmanifest.xml file. Summary: This program will depict how to start one activity from other activity &#160; File name: SubActivityActivity.java &#160; package com.satishandroid.subactivity; &#160; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; //import [...]<p><a href="http://techpalle.com/blog/2012/02/23/android-training-starting-one-activity-from-other-activity/">Android training: Starting one activity from other activity</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/02/23/android-training-starting-one-activity-from-other-activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android training: Button clicking example</title>
		<link>http://techpalle.com/blog/2012/02/22/android-training-button-clicking-example/</link>
		<comments>http://techpalle.com/blog/2012/02/22/android-training-button-clicking-example/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 11:38:41 +0000</pubDate>
		<dc:creator>Palle Technologies</dc:creator>
				<category><![CDATA[ANDROID]]></category>

		<guid isPermaLink="false">http://techpalle.com/blog/?p=499</guid>
		<description><![CDATA[//File name: ButtonclickActivity.java // Note: before executing this program, you should ensure that you have one button &#38; one edittext in your main.xml file. package com.techpalle.buttonclick; // This is the package name in which your project will reside. /* * Below are the import statements which will import different classes which you will be * using [...]<p><a href="http://techpalle.com/blog/2012/02/22/android-training-button-clicking-example/">Android training: Button clicking example</a> is a post from: <a href="http://techpalle.com/blog">techpalle.com</a></p>
]]></description>
		<wfw:commentRss>http://techpalle.com/blog/2012/02/22/android-training-button-clicking-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
