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);