0.3.0 • Published 2 years ago

cordova-plugin-android-webview-manager v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Cordova Android WebView Manager

This plugin allows to call some methods of Cordova Android WebView.

Installation

cordova plugin add cordova-plugin-android-webview-manager

Usage

Give focus to the WebView

WebViewManager.requestFocus(WebViewManager.FOCUS_DOWN)
    .then(console.info)
    .catch(console.error);

Check if the WebView is focused

WebViewManager.isFocused()
    .then(console.info)
    .catch(console.error);

Methods

Notes

  1. According to the issue #36911528 the adjustResize value of android:windowSoftInputMode does not work properly for the WebView in the fullscreen mode. These methods allow to enable/disable expected behaviour. Solution is based on the AndroidBug5497Workaround.

Constants