1

我用phonegap 3.0为android创建了一个应用程序,我想检查设备是否有闪光灯,但getPackageManager()方法的方法有问题,

这是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) { ...
4

1 回答 1

1

尝试这个

    boolean hasFlash = this.cordova.getActivity().getPackageManager()
                .hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);
于 2013-10-07T10:23:34.503 回答