I\'m using the cordova InAppBrowser to display content from an external site in my app. When I open the browser on an iPhone, there are some buttons at the bottom of the InA
As stated by elMarquis, you need to add "location=yes" in order to get the "Done" button on an Android device. However, if you'd like to get the Done button by itself, without the address bar, it's fairly easy to do by making one change to the cordova source code.
I got the information from this google group: https://groups.google.com/forum/?fromgroups=#!topic/phonegap/mUcBcjPISgg
Here are some step-by-step instructions:
Download the cordova source code:
git clone https://github.com/apache/cordova-plugin-inappbrowser
Download the commons codec lib from here
Import the cordova project into your workspace
File > Import... > Existing Projects into Workspace
Create a libs directory and copy the downloaded commons-codec-1.7.jar file into it.
gen folder to the project (required by the .classpath file, but not included in the git download since git doesn't allow empty folders)Hopefully that helps someone else.