[Solved] how to switch from android app to web?


public void gotoMyWebSite(View view) {
Intent intent;
intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://translate.google.com/"));
startActivity(intent);
}

solved how to switch from android app to web?