New Intent(Intent.ACTION_VIEW,Uri); is an _____
-
Explicit Intent
-
Implicit Intent
-
Special Intent
-
None of above
B
Correct answer
Explanation
Using Intent.ACTION_VIEW with a URI creates an Implicit Intent because you're specifying an action and data, but not the exact component to handle it. Android resolves the component at runtime based on the registered intent filters. Explicit intents specify the component class directly (new Intent(context, MyClass.class)).