Hello Phongap developers and all seniors,
I have made simple iPhone application using Phonegap (1.5- cordova) successfully. In that i am able to load
www.mywebsite.com and able to navigate website fine.
Now i am making same sort of application for android. So far i am able to display
www.mywebsite.com successfullly, not fully tested yet.
As I have worked in past with JAVA and android, i looked into the source of ChildBrowser.JAVA file.. and found that webview is loaded dynamically as title less, cancel-able dialog box
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setCancelable(true);
So if user presses BACK button on android device (this button is not available in iPhone)... it will simply dismiss the dialog box, which i think not right ?
Another point, it is actually not loading remote webpage into same window (as it seem to be in iPhone), right?
What i want to implement is first page should be loaded is
www.mywebsite.com from local empty index.html (onLoad and cb.showWebPage). IF back button is pressed to my first page then it should terminate the application, right now it is showing blank local web page.
Thanks in advance,
pbjc