2

iphone/ipad アプリを開発する際に、ios 用のスクリーンショット プラグインを使用しました。現在、Android バージョンのアプリを作成しており、Android バージョンのプラグインを実装しようとしています。

プラグインの私の Java 部分は次のようになります。

package org.apache.cordova;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.cordova.api.Plugin;
import org.apache.cordova.api.PluginResult;
import org.json.JSONArray;

import android.graphics.Bitmap;
import android.os.Environment;
import android.view.View;

public class Screenshot extends Plugin {
private PluginResult result = null;

@Override
public PluginResult execute(String action, JSONArray args, String callbackId) {
    // starting on ICS, some WebView methods
    // can only be called on UI threads
    super.cordova.getActivity().runOnUiThread(new Runnable() {
        public void run() {
            View view = webView.getRootView();

            view.setDrawingCacheEnabled(true);
            Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
            view.setDrawingCacheEnabled(false);

            try {
                File folder = new File(Environment.getExternalStorageDirectory(), "Pictures");
                if (!folder.exists()) {
                    folder.mkdirs();
                }

                File f = new File(folder, "screenshot_" + System.currentTimeMillis() + ".png");

                FileOutputStream fos = new FileOutputStream(f);
                bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
                result = new PluginResult(PluginResult.Status.OK);

            } catch (IOException e) {
                result = new PluginResult(PluginResult.Status.IO_EXCEPTION, e.getMessage());
            }
        }
    });

    // waiting ui thread to finish
    while (this.result == null) {
        try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            // ignoring exception, since we have to wait
            // ui thread to finish
        }
    }

    return this.result;
}

}

私の Screenshot.js は次のようになります。

(function() {
/* Get local ref to global PhoneGap/Cordova/cordova object for exec function.
    - This increases the compatibility of the plugin. */
var cordovaRef = window.PhoneGap || window.Cordova || window.cordova; // old to new fallbacks

/**
 * This class exposes the ability to take a Screenshot to JavaScript
 */
function Screenshot() { }

/**
 * Save the screenshot to the user's Photo Library
 */
Screenshot.prototype.saveScreenshot = function() {
cordovaRef.exec(null, null, "Screenshot", "saveScreenshot", []);
};

    if (!window.plugins) {
        window.plugins = {};
    }
    if (!window.plugins.screenshot) {
        window.plugins.screenshot = new Screenshot();
    }

 })(); /* End of Temporary Scope. */

次のコードを使用して、screenshot.js 関数を呼び出そうとします。

function takeScreenShot() {
  cordovaRef.exec("Screenshot.saveScreenshot");
}   

しかし、私が得るのはJSONエラーだけです。どこかでJava文字列からJSONに変換するように求めていることは知っていますが、それを変更する方法がわかりません。わかりました、それは間違っていると思います...

私のエラーは次のようになります。

ERROR: org.json.JSONException: Value undefined of type java.lang.String cannot be converted to JSONArray.
Error: Status=8 Message=JSON error
file:///android_asset/www/cordova-2.0.0.js: Line 938 :  Error: Status=8 Message=JSON error
Error: Status=8 Message=JSON error at file:///android_asset_/www/cordova-2.0.0.js:938

どこが間違っているのか教えてもらえますか?

4

1 に答える 1

2

質問の解決者:

Cordova 2.0.0 の Phonegap スクリーンショット プラグイン

Simon MacDonald による回答。

于 2012-09-17T10:20:30.313 に答える