Web browser.
This is Android's default web browser, based on the WebKit browser engine.
To open a web site use:
Intent i = new Intent(Intent.ACTION_VIEW); Uri u = Uri.parse("http://www.openintents.org"); i.setData(u); startActivity(i);
How would you close that browser? ie, you've caused a browser window to open. Is it possible to close it programmatically?
Comments
Open a Web Intent - now close it?
How would you close that browser? ie, you've caused a browser window to open. Is it possible to close it programmatically?