From my application I use an Intent to open a web page in the Browser. The default behaviour is that back button leads to previous page in the browser and not back to my application. Is there a way to force the back button to return the user to my App?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Once you use an Intent to open into another app, it's up to that App to handle the back button. If you just want to show a webpage as an activity, you can run your own activity that hosts a WebView and use the following to open your web page:

webview.loadUrl("http://lolcats.com/");

And in your activity you can override the back button to do what you need to do:

@Override
public void onBackPressed()
{
    // put code here to do things
}
link|improve this answer
Thank you. If I understand you right, there is no need to override something. WebView is just a view and back button works as expected - going to previous activity and not to previous page. Am I right? – damluar Mar 8 '11 at 23:27
Yeah, you're right. I was thinking you may need to do something else fancy, but if all you need is to show a webpage and go back to previous activity on back button, you don't need to override. – Jake Basile Mar 8 '11 at 23:34
May be you know answer to another question. Browser has the ability to launch another activities if it meet URI with appropriate schema. Is it possible with WebView? – damluar Mar 8 '11 at 23:55
That should work, if the intended activity is declared with the apropriate intent filter. – Jake Basile Mar 8 '11 at 23:56
I experienced frustrating behaviour. My application look like: Main -> Browser -> Main. If I leave Main as standard, then firstly browser creates new Main and secondly, if user goes Home he return to first Main, not second. Otherwise, if I make Main as singleTask, then browser finds first Main and all is fine. BUT, every going Home destroys the stack! All ways are bad... – damluar Mar 9 '11 at 0:01
show 4 more comments
feedback

How are you calling the browser? If you do it like this:

Uri url = Uri.parse("http://mysite.com/");
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, url);
startActivity(launchBrowser);

then it ought to work as you expect.

link|improve this answer
Yes, I'm doing it the same way. But I read that browser reimplement back button and does it different way. Can you explain? – damluar Mar 8 '11 at 23:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.