Is It Possible To open 2 url At a time from android app without opening the layout. I can open these two in two different activity or using two button in same activity.
Uri uri = Uri.parse("http://www.facebook.com");
startActivity(new Intent(Intent.ACTION_VIEW, uri));
Uri uri = Uri.parse("http://www.gmail.com");
startActivity(new Intent(Intent.ACTION_VIEW, uri));
Is it possible to open them from same activity directly as the application start??