I have a phonegap app running on my phone. I have a link that takes me to a web page to check some info and presents some data... then I want to be able to have a back button so that the user will navigate back to the local app. Is this possible in both android and iOS?
|
|
I think you should use childbrowser plugin of phonegap as in that case you will have consistent behavior in both android and iOS considering iOS does not have |
|||||||||||||
|
|
If you have complete control of the content of the external page, you could implement a URL scheme in iOS: http://remysharp.com/2010/09/01/custom-url-schemes-in-phonegap/ ... and this hack to get it in Android: http://remysharp.com/2010/09/01/custom-url-schemes-in-phonegap/ Then your external page could link back to the app via a myappname://some/parameters URL Both of the above articles are from 2010, which does not bode well for the Android one (software is constantly evolving)... but if that doesn't work I bete there is a more recent article somewhere with a way that works for sure. I know the iOS one works as it is in use in my app now. |
|||
|
|
|
I hacked a custom version of the ChildBrowser to remove all toolbar elements and also pass messages between the child page and the parent app. This hack, SlaveBrowser, was originally intended for oAuth2 on Android. The parent app knows when to close the external page, so there was no need for an ugly toolbar :-). Someone with Obj-C skills could port that to iOS |
|||
|
|
|
If your webpages are stored in your project under /assets/ you can use file:///android_asset/index.html. Of course, that is Android specific. |
|||
|
|
|
what about displaying the external page in an iframe. this way you can still display a back-button from you local phonegap app. |
|||||
|
|
Answer is "NO WAY BACK".
You cannot Navigate back to any local class. |
|||
|
|
|
I have used childbrowser and modified the UI in xCode so that I have no address bar and an unique small "go back to the app" button. I didn't need to touch obj-c just in the UI editor select what u don't want and delete it. |
|||
|
|
|
This works in both Android and iOS:
But, as others have mentioned, I've found it not worth it to try to ever leave the |
||||
|
|