46.6k views
3 votes
Given the following Uri object, which of the following statements creates an Intent object that you can use to view the specified URL in a web browser?

Uri uri = Uri.parse(" /");

User Alik Rokar
by
7.7k points

1 Answer

2 votes

Final answer:

To create an Intent object that opens a URL in a web browser, use the statement: Intent intent = new Intent(Intent.ACTION_VIEW, uri);

Step-by-step explanation:

To create an Intent object that opens a specified URL in a web browser, you can use the following statement:

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

This statement creates an Intent object and specifies the action as ACTION_VIEW and the data as the provided Uri object. This Intent can then be used to start an activity that can handle the viewing of the URL in a web browser.

User Shahil
by
7.9k points