Example usage for org.apache.cordova CordovaWebView getEngine

List of usage examples for org.apache.cordova CordovaWebView getEngine

Introduction

In this page you can find the example usage for org.apache.cordova CordovaWebView getEngine.

Prototype

CordovaWebViewEngine getEngine();

Source Link

Usage

From source file:de.mayflower.cordova.androidscrollbar.AndroidScrollbar.java

License:Apache License

@Override
public void initialize(CordovaInterface cordova, CordovaWebView cdvWebView) {
    super.initialize(cordova, cdvWebView);

    try {/*from w ww  . j a  va  2  s  .com*/
        this.webView = (WebView) (cdvWebView.getEngine().getView());
    } catch (ClassCastException e) {
        this.webView = null;
        return;
    }

    this.webView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
}