I am trying to open URL in browser in same tab. Instead of creating new tab(for same URL) of each click on android app.
Hers's is the code:
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://1.1.1.1:8008"));
intent.putExtra(Browser.EXTRA_APPLICATION_ID, "com.android.browser");
startActivity(intent);
If I close the browser and again restart the application I see URL opened in new tab, instead of open using existing tab.