Tag Archives: intent-filter

How to send Data between two individual applications in Android?

By | April 1, 2013

We can send data between two individual applications in Android if the receiving application is configured to received that type of data. For example if an application is to receive Image data then it’s manifest should contain the ImageFilter as Shown below For example ac activity in the receiving application is named “Receiver” then its… Read More »

How to make your activity appear like a dialog box in android?

By | February 5, 2012

Hello all.. Today I will talk about how to theme your activities the way you want. Besides that android provides many built in themes that you can use instead of all writing it yourselves. One of those kind is making the activity appear like a dialog box. Here is how you do it. After creating… Read More »

How to open browser in an ANDROID application? How to open a URL from an ANDROID application?

By | March 28, 2011

Hi all,In this tutorial I will show you how to open browser from an ANDROID application. This is done through intents. You know that intents are used to invoke other activities. So we here invoke the browser activity. The following code will open the default browser in your ANDROID phone. This is the manifest file… Read More »