Implicit intents do not name a target (the field for the component name is blank).
Implicit intents specify the action which should be performed and optionally data which provides data for the action.
For example the following tells the Android system to view a webpage.
- Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.vogella.com"));
- startActivity(i);