title | description |
---|---|
Inappbrowser |
Open an in-app browser window based on this plugin (https://github.com/apache/cordova-plugin-inappbrowser), We just change it for android only to support open it in (X, Y, Width, Height). |
You can show helpful articles, videos, and web resources inside of your app. Users can view web pages without leaving your app.
This plugin provides a web browser view that displays when calling cordova.InAppBrowser.open()
.
var ref = cordova.InAppBrowser.open('http://apache.org', '_blank', 'location=yes', X, Y, Width, Height);
The cordova.InAppBrowser.open()
function is defined to be a drop-in replacement
for the window.open()
function. Existing window.open()
calls can use the
InAppBrowser window, by replacing window.open:
window.open = cordova.InAppBrowser.open;
The InAppBrowser window behaves like a standard web browser, and can't access Cordova APIs. For this reason, the InAppBrowser is recommended if you need to load third-party (untrusted) content, instead of loading that into the main Cordova webview. The InAppBrowser is not subject to the whitelist, nor is opening links in the system browser.
The InAppBrowser provides by default its own GUI controls for the user (back, forward, done).
For backwards compatibility, this plugin also hooks window.open
.
However, the plugin-installed hook of window.open
can have unintended side
effects (especially if this plugin is included only as a dependency of another
plugin). The hook of window.open
will be removed in a future major release.
Until the hook is removed from the plugin, apps can manually restore the default
behaviour:
delete window.open // Reverts the call back to its prototype's default
Although window.open
is in the global scope, InAppBrowser is not available until after the deviceready
event.
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log("window.open works well");
}
cordova plugin add https://github.com/ahmedelrefaiy/InAppBrowserWidthHeight
Opens a URL in a new InAppBrowser
instance, the current browser
instance, or the system browser.
var ref = cordova.InAppBrowser.open(url, target, options, X, Y, Width, Height);
-
ref: Reference to the
InAppBrowser
window when the target is set to'_blank'
. (InAppBrowser) -
url: The URL to load (String). Call
encodeURI()
on this if the URL contains Unicode characters. -
target: The target in which to load the URL, an optional parameter that defaults to
_self
. (String)_self
: Opens in the Cordova WebView if the URL is in the white list, otherwise it opens in theInAppBrowser
._blank
: Opens in theInAppBrowser
._system
: Opens in the system's web browser.
-
X: The starting point at X coordinate to open InAppBrowser. (Number)
-
Y: The starting point at Y coordinate to open InAppBrowser. (Number)
-
Width: The width of opened InAppBrowser. (Number)
-
Height: The height of opened InAppBrowser. (Number)
-
options: Options for the
InAppBrowser
. Optional, defaulting to:location=yes
. (String)The
options
string must not contain any blank space, and each feature's name/value pairs must be separated by a comma. Feature names are case insensitive.All platforms support:
- location: Set to
yes
orno
to turn theInAppBrowser
's location bar on or off.
Android supports these additional options:
- hidden: set to
yes
to create the browser and load the page, but not show it. The loadstop event fires when loading is complete. Omit or set tono
(default) to have the browser open and load normally. - clearcache: set to
yes
to have the browser's cookie cache cleared before the new window is opened - clearsessioncache: set to
yes
to have the session cookie cache cleared before the new window is opened - closebuttoncaption: set to a string to use as the close button's caption instead of a X. Note that you need to localize this value yourself.
- closebuttoncolor: set to a valid hex color string, for example:
#00ff00
, and it will change the close button color from default, regardless of being a text or default X. Only has effect if user has location set toyes
. - footer: set to
yes
to show a close button in the footer similar to the iOS Done button. The close button will appear the same as for the header hence use closebuttoncaption and closebuttoncolor to set its properties. - footercolor: set to a valid hex color string, for example
#00ff00
or#CC00ff00
(#aarrggbb
) , and it will change the footer color from default. Only has effect if user has footer set toyes
. - hardwareback: set to
yes
to use the hardware back button to navigate backwards through theInAppBrowser
's history. If there is no previous page, theInAppBrowser
will close. The default value isyes
, so you must set it tono
if you want the back button to simply close the InAppBrowser. - hidenavigationbuttons: set to
yes
to hide the navigation buttons on the location toolbar, only has effect if user has location set toyes
. The default value isno
. - hideurlbar: set to
yes
to hide the url bar on the location toolbar, only has effect if user has location set toyes
. The default value isno
. - navigationbuttoncolor: set to a valid hex color string, for example:
#00ff00
, and it will change the color of both navigation buttons from default. Only has effect if user has location set toyes
and not hidenavigationbuttons set toyes
. - toolbarcolor: set to a valid hex color string, for example:
#00ff00
, and it will change the color the toolbar from default. Only has effect if user has location set toyes
. - zoom: set to
yes
to show Android browser's zoom controls, set tono
to hide them. Default value isyes
. - mediaPlaybackRequiresUserAction: Set to
yes
to prevent HTML5 audio or video from autoplaying (defaults tono
). - shouldPauseOnSuspend: Set to
yes
to make InAppBrowser WebView to pause/resume with the app to stop background audio (this may be required to avoid Google Play issues like described in CB-11013). - useWideViewPort: Sets whether the WebView should enable support for the "viewport" HTML meta tag or should use a wide viewport. When the value of the setting is
no
, the layout width is always set to the width of the WebView control in device-independent (CSS) pixels. When the value isyes
and the page contains the viewport meta tag, the value of the width specified in the tag is used. If the page does not contain the tag or does not provide a width, then a wide viewport will be used. (defaults toyes
).
iOS supports these additional options:
- hidden: set to
yes
to create the browser and load the page, but not show it. The loadstop event fires when loading is complete. Omit or set tono
(default) to have the browser open and load normally. - clearcache: set to
yes
to have the browser's cookie cache cleared before the new window is opened - clearsessioncache: set to
yes
to have the session cookie cache cleared before the new window is opened - closebuttoncolor: set as a valid hex color string, for example:
#00ff00
, to change from the default Done button's color. Only applicable if toolbar is not disabled. - closebuttoncaption: set to a string to use as the Done button's caption. Note that you need to localize this value yourself.
- disallowoverscroll: Set to
yes
orno
(default isno
). Turns on/off the UIWebViewBounce property. - hidenavigationbuttons: set to
yes
orno
to turn the toolbar navigation buttons on or off (defaults tono
). Only applicable if toolbar is not disabled. - navigationbuttoncolor: set as a valid hex color string, for example:
#00ff00
, to change from the default color. Only applicable if navigation buttons are visible. - toolbar: set to
yes
orno
to turn the toolbar on or off for the InAppBrowser (defaults toyes
) - toolbarcolor: set as a valid hex color string, for example:
#00ff00
, to change from the default color of the toolbar. Only applicable if toolbar is not disabled. - toolbartranslucent: set to
yes
orno
to make the toolbar translucent(semi-transparent) (defaults toyes
). Only applicable if toolbar is not disabled. - enableViewportScale: Set to
yes
orno
to prevent viewport scaling through a meta tag (defaults tono
). - mediaPlaybackRequiresUserAction: Set to
yes
to prevent HTML5 audio or video from autoplaying (defaults tono
). - allowInlineMediaPlayback: Set to
yes
orno
to allow in-line HTML5 media playback, displaying within the browser window rather than a device-specific playback interface. The HTML'svideo
element must also include thewebkit-playsinline
attribute (defaults tono
) - keyboardDisplayRequiresUserAction: Set to
yes
orno
to open the keyboard when form elements receive focus via JavaScript'sfocus()
call (defaults toyes
). - suppressesIncrementalRendering: Set to
yes
orno
to wait until all new view content is received before being rendered (defaults tono
). - presentationstyle: Set to
pagesheet
,formsheet
orfullscreen
to set the presentation style (defaults tofullscreen
). - transitionstyle: Set to
fliphorizontal
,crossdissolve
orcoververtical
to set the transition style (defaults tocoververtical
). - toolbarposition: Set to
top
orbottom
(default isbottom
). Causes the toolbar to be at the top or bottom of the window. - hidespinner: Set to
yes
orno
to change the visibility of the loading indicator (defaults tono
).
Windows supports these additional options:
- hidden: set to
yes
to create the browser and load the page, but not show it. The loadstop event fires when loading is complete. Omit or set tono
(default) to have the browser open and load normally. - hardwareback: works the same way as on Android platform.
- fullscreen: set to
yes
to create the browser control without a border around it. Please note that if location=no is also specified, there will be no control presented to user to close IAB window.
- location: Set to
- Android
- Browser
- iOS
- OSX
- Windows
var ref = cordova.InAppBrowser.open("http://apache.org", '_self', 'location=no,zoom=no,hardwareback=yes', 0, 0, 50, 100);
Start reading the remaining of the plugin features from the original plugin as it is the same.
Remember only to add (X, Y, Width, Height) after options
parameter
- The plugin don't support the resizing during the execution of the app.
- You must predefined your app will be portrait or landscape from the begining (and disable user from changing this during the execution of the app)
- (X, Y, Width, Height) will be applied for android only.