phonegap 3.0 で android 用のアプリを作成し、デバイスに flash ligth があるかどうかを確認したいのですが、getPackageManager() medthod のメソッドに問題があります。
これはJavaファイルの一部です。デバイスでコンパイルしてもエラーは発生しませんが、プラグインは機能しません:
...
import android.content.Context;
import android.content.pm.PackageManager;
public class Torch extends CordovaPlugin {
Camera camera;
Camera.Parameters Parameters;
boolean hasFlash;
Context my_service;
/* Constructor */
public Torch() { }
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
if (action.equals("shine")) {
hasFlash = my_service.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);
if (!hasFlash) { callbackContext.error("no torch found"); }
else { this.shine(args.getBoolean(0));
} ...
私はEclipseでコードも試しましたが、Context my_service
インスタンスなしでのみ機能します。
hasFlash = getApplicationContext().getPackageManager()
.hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);
if (!hasFlash) { ...