Android Intents

Abra um URL

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity
(browserIntent);

Passe informações por meio de atividades

Intent intent = new Intent(ListActivity.this, ShowActivity.class);
intent
.putExtra(EXTRA_USER_ID, userId);
startActivity
(intent);

// and then
int userId = getIntent().getExtras().getInt(EXTRA_USER_ID);