I'd like to thank in advance all the people who will take the time to read my post (and maybe answer it :p)
I'm developping a very simple Android application, which aims at displaying a website. Of course, I've read the documentation, and I'm using the following code to display the page :
Uri uriUrl = Uri.parse("http://example.com");
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
startActivity(launchBrowser);
The site is correctly displaying, I'm on heaven :) But.. If i quit the application by pressing the HOME button (I know it doesn't really quit, but nervermind) and launches it again, the web browser opens a new tab containing my page. What I would like is the browser not creating a new tab, but keep the one that was created during first launch.
I'd rather not use Webviews since it implies more code, and I want a very simple application.
I'm new to Android development, so please be kind with me :D I apologize for the errors, I know my English is bad.
Thank you guys !