Domanda

i create a app for android with phonegap 3.0 and i want to check if the device has a flash ligth but i have problems with the method of getPackageManager() medthod,

here is the part of the java file, i get no errors by compiling on the device but the plugin does not work:

    ...
    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));

        } ...

i tried also the code in eclipse, there it works only without the Context my_service instance.

hasFlash = getApplicationContext().getPackageManager()
                .hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);

        if (!hasFlash) { ...
È stato utile?

Soluzione

Try this

    boolean hasFlash = this.cordova.getActivity().getPackageManager()
                .hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top