4

我已经做了很多研究,似乎无法找到为什么这不起作用。我所拥有的是运行 Cordova 2.7.0 的 Eclipse 中基于 Cordova 的 Android 应用程序。我想构建一个简单的插件,它只在完成时提醒用户。

我的 index.html

    <head>
    <script type="text/javascript" src="cordova-2.7.0.js"></script>
    <script>
        window.func = function(str,callback){
            alert("Outside Call Working");
            cordova.exec(callback, function(err){alert(err)},"HelloPlugin","echo", [str]);
        }
        function callPlugin(str){
            alert("JS Working");
            window.func(str,function(){
                alert("Done!");
            });
        }
    </script>
</head>
<body>
    <h2>PluginTest</h2>
    <a onclick="callPlugin('Plugin Working!')">Click me</a>
</body>

我添加插件的 config.xml 行

<plugin name="HelloPlugin" value="org.apache.cordova.plugin.HelloPlugin" />

我的实际插件 HelloPlugin.java 位于 MainActivity.java 旁边的 src/com/example/plugintest

package com.example.plugintest;

import org.apache.cordova.api.CallbackContext;
import org.apache.cordova.api.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;

public class HelloPlugin extends CordovaPlugin{

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
        /*if(action.equals("echo")){
            String message = args.getString(0); 
            callbackContext.success(message);
            return true;
        }*/
        callbackContext.success(action);
        return true;
    }
}

任何帮助是极大的赞赏!

4

2 回答 2

4

In this line

    window.func = function(str,callback){
        alert("Outside Call Working");
        cordova.exec(callback, function(err){alert(err)},"HelloPlugin","echo", [str]);
    }

put like this

window.func = function(str,callback){
        alert("Outside Call Working");
        cordova.exec(callback, function(err){alert(err)},"org.apache.cordova.plugin.HelloPlugin","echo", [str]);
    }
于 2013-11-05T16:22:05.117 回答
3

config.xml 中“HelloPlugin”的值应该指向 Java 类所在的包,以便 Cordova 可以找到并执行 Java 代码。因此,如果您更改 <plugin name="HelloPlugin" value="org.apache.cordova.plugin.HelloPlugin" /><plugin name="HelloPlugin" value="com.example.plugintest.HelloPlugin" /> 我相信它应该可以工作。

于 2013-05-21T12:56:43.383 回答