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?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
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
And in your activity you can override the back button to do what you need to do:
|
|||||||||||
|
|
How are you calling the browser? If you do it like this:
then it ought to work as you expect. |
|||
|
