I have an Intent that opens a web page in FireFox on a Samsung tablet but it keeps opening a new tab each time. I've been using the putExtra() with an EXTRA_APPLICATION_ID and it previously did the trick and opened the page reusing the same browser tab but now its broke. I'm not sure if it makes a difference but the code below is runOnUiThread() as there is other processing that touches views. Any ideas would be appreciated.
String pageName = "http://google.com";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(pageName));
intent.putExtra(Browser.EXTRA_APPLICATION_ID, getApplication().getPackageName());
startActivity(intent);