2

我正在使用 Cordova 5.1.1。我想从 android 中的 CordovaWebview 调用网络 URL。我的 Android 操作系统版本是 4.4.2。这是我在 Android 端的代码。

安卓

content_main.xml 文件:-

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main" tools:context=".MainActivity">

    <org.apache.cordova.engine.SystemWebView
        android:id="@+id/cordovaWebView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</RelativeLayout>

这是我初始化 WebView 并调用网络 url 的 java 文件。

MainActivity.java:-

package com.andapp.kushpatel.cordova5_file_chooser;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;

import org.apache.cordova.ConfigXmlParser;
import org.apache.cordova.CordovaInterface;
import org.apache.cordova.CordovaInterfaceImpl;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.CordovaWebViewEngine;
import org.apache.cordova.CordovaWebViewImpl;
import org.apache.cordova.engine.SystemWebView;
import org.apache.cordova.engine.SystemWebViewEngine;

import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class MainActivity extends AppCompatActivity implements CordovaInterface{


    private static String TAG = MainActivity.class.getSimpleName();
    private CordovaWebView cordovaWebView;
    public static final String START_URL = "http://localhost:8080/GCM_Project/";

    CordovaPlugin activityResultCallback;
    private Object activityResultKeepRunning;
    private Object keepRunning;
    private final ExecutorService threadPool = Executors.newCachedThreadPool();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.content_main);


        //Set up the webview
            ConfigXmlParser parser = new ConfigXmlParser();
            parser.parse(this);

        SystemWebView syswebView = (SystemWebView) findViewById(R.id.cordovaWebView);
        cordovaWebView = new CordovaWebViewImpl(new SystemWebViewEngine(syswebView));
        cordovaWebView.init(this, parser.getPluginEntries(), parser.getPreferences());
        cordovaWebView.loadUrl(START_URL);



    }

    @Override
    public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode) {
        this.activityResultCallback = command;
        this.activityResultKeepRunning = this.keepRunning;

        // If multitasking turned on, then disable it for activities that return results
        if (command != null) {
            this.keepRunning = false;
        }

        // Start activity
        super.startActivityForResult(intent, requestCode);
    }

    @Override
    public void setActivityResultCallback(CordovaPlugin plugin) {
        this.activityResultCallback = plugin;
    }

    @Override
    public Activity getActivity() {
        return this;
    }

    @Override
    public Object onMessage(String s, Object o) {
        return null;
    }

    @Override
    public ExecutorService getThreadPool() {
        return threadPool;
    }

    @Override
    public void requestPermission(CordovaPlugin cordovaPlugin, int i, String s) {

    }

    @Override
    public void requestPermissions(CordovaPlugin cordovaPlugin, int i, String[] strings) {

    }

    @Override
    public boolean hasPermission(String s) {
        return false;
    }
}

这是我使用了两个 Cordova 插件的配置文件。

配置文件

<widget id="io.cordova.helloCordova" version="2.0.0" xmlns="http://www.w3.org/ns/widgets">
    <name>Hello Cordova</name>
    <description>
        A sample Apache Cordova application that responds to the deviceready event.
    </description>
    <author email="dev@cordova.apache.org" href="http://cordova.io">
        Apache Cordova Team
    </author>
    <access origin="http://*/*"/>
    <access origin="https://*/*"/>
    <access origin="*.apache.org" />
    <access origin="http://*.google.com/*" />
    <access origin="https://*.google.com/*" />
    <access origin="https://*.googleapis.com/*" />
    <access origin="https://*.gstatic.com/*" />
    <access origin="tel:*" launch-external="yes"/>
    <access origin="geo:*" launch-external="yes"/>
    <access origin="mailto:*" launch-external="yes"/>
    <access origin="sms:*" launch-external="yes"/>
    <access origin="market:*" launch-external="yes"/>
    <content src="index.html" />

    <allow-navigation href="http://*/*" />
    <allow-navigation href="https://*/*" />

    <preference name="loglevel" value="DEBUG" />

    <feature name="FileChooser">
        <param name="android-package" value="com.andapp.kushpatel.cordova5_file_chooser.FileChooser" />
    </feature>

    <feature name="WhitelistPlugin">
        <param name="android-package" value="com.andapp.kushpatel.cordova5_file_chooser.WhitelistPlugin" />
    </feature>

    <preference name="loadUrlTimeoutValue" value="300000" />
</widget>

在服务器端有一个 html 文件。在那个 html 文件中,我使用了 whiteList 插件的元标记。

 <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'"/>

现在,当我调用 webview 和日志中永远不会显示任何内容时,我收到“出现网络错误”错误。

我在下面的链接中提到了描述的代码。 https://cordova.apache.org/docs/en/6.x/reference/cordova-plugin-whitelist/

如何使用白名单配置 Cordova-android 4.0

“未找到 Content-Security-Policy 元标记。” 我的 phonegap 应用程序中的错误

4

1 回答 1

0

您必须添加此行才能添加您的插件。现在它将正常工作。

ConfigXmlParser parser = new ConfigXmlParser();
        parser.parse(mActivity); 

CordovaPlugin plugin = new WhitelistPlugin(mActivity);
                PluginEntry entry = new PluginEntry("whiteList",plugin);
                parser.getPluginEntries().add(entry);
于 2016-05-11T10:36:13.497 回答