1

由于在 Android Cordova 5.1.1 CordovaWebView 中不起作用,我曾尝试过

WebView wV = (WebView)appView.getEngine().getView();

代替

CordovaWebView webView = new CordovaWebView(this);

但在我的情况下, appView始终为空:

下面是代码片段

 public void onCreate(Bundle savedInstanceState)
 {
        loadUrl(launchUrl);
 }
 public void init() {
    WebView wV = (WebView) appView.getEngine().getView();
}

但是我得到appView= null并且程序每次都失败。

4

1 回答 1

0

看起来您已经覆盖了CordovaActivity设置appView.

以不同的方式命名该init方法(或者super.init()如果这是您的意图,则在其中调用)并确保在调用它之后调用它loadUrl

于 2016-09-21T11:39:00.333 回答