Solved

To Create an Intent to Open a Web Browser, We

Question 33

Essay

To create an Intent to open a web browser, we use an Intent constructor using the ACTION_VIEW constant of the Intent class as its first argument and a Uri as its second argument. Write the code to open a browser at the Google web page.
Uri uri = Uri.parse( "http://www.google.com" );
// Your code goes here

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions