Phonegap中不推荐使用插件类

时间:2013-02-20 04:53:55

标签: android cordova

我观察到Phonegap中的Plugin类已被弃用,那么现在什么是插件的替代品,如何在Java和JavaScript之间进行通信而不使用JavaScript Interface类和插件类

表达感谢 你

1 个答案:

答案 0 :(得分:2)

插件在最近的版本中有所改变,而不是扩展PluginClass,它现在扩展了CordovaPlugin。您可以在官方文档中找到如何创建插件。

Link to the android plugin development guide

public class Echo extends CordovaPlugin {
    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
        if (action.equals("echo")) {
            String message = args.getString(0); 
            this.echo(message, callbackContext);
            return true;
        }
        return false;
    }

    private void echo(String message, CallbackContext callbackContext) {
        if (message != null && message.length() > 0) { 
            callbackContext.success(message);
        } else {
            callbackContext.error("Expected one non-empty string argument.");
        }
    }
}