What is the difference between Implicit Intent and explicit Intent .

What is the difference between Implicit Intent and explicit Intent .



On 2014-06-10 01:37:58.0
Abakasha


Explicit Intent:-
1)It names the component.
2)Ex:-
Intent in=new Intent(ctx,nextActivity.class);
Implicit Intent:-
1)have not specified a component
2)Ex:-
Intent in=new Intent(Intent.ACTION_VIEW,uri.Parse("www.google.com"));


On 2014-06-10 03:34:20.0
sonali

copyright@questionsforum.net