Featured
-
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
An Overview of Android Activity - Video Tutorial
As far as Android platform is concerned, the funda
by amit.rai -
How to get IMEI number,serial number and software version of your phone
Hello... Sometimes we need to know the country
by shahbaz.ahmmod -
Search location by using place on google map
Here below is the code for searching places by usi
by shahbaz.ahmmod -
How to know free space in sdcard android
I have written code to know free space in sdcard
by shahbaz.ahmmod
Tags
Implicit intent in android with example
Intent:
Subclass : android.content.Intent class
Intent is basically a way of communication between the various components such as activities, broadcast receivers , etc.
We use it with startActivity() method to start a...
There is an Application to Receive the Intent or not in Android
Hi friends,
For Implicit intent, we dont need to declare the name of the class but we declare the action that we are doing to perform.
Like here we make a call
Uri callUri = Uri.parse("tel:100");
Intent intent = new Intent(Intent.AC...
How to send sms using Intent ?
This video tutorial tells you about how to send SMS using android intent.
For sending an SMS using Implicit Intent, call the intent like this:-
// call Intent to send sms
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromParts("sms", "9...
How to make a call from your android application
This tutorial describe you how to make a call from your android application.
To make a call you just need to call Implicit intent like this:-
// call implicit intent with phone number to make a call
Intent callIntent = new Intent(Intent.ACTI...
How to open a Url using Intent
To open a url using Intent, first create a button on the layout. And set the onClickListener on the button and open the browser using implicit Intent, like below:-
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivit...