I’m trying to open more than one link in different tabs in default android browser.
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url1));
startActivity(browserIntent);
browserIntent.setData(Uri.parse(url2));
startActivity(browserIntent);
Code above opens browser with one tab and reload it after calling each startActivity(browserIntent). Is it any possibility to open new tab for each url and how it can be achieved?
No.
For starters, the user’s default browser might not even have tabs. Even if the device happens to have a tabbed browser pre-installed, the user is welcome to download a third-party browser app that happens to not have tabs, and make that their default browser.