/** * Starts an intent to scan and decode a barcode. */ public void scan() { Intent intentScan = new Intent(SCAN_INTENT); intentScan.addCategory(Intent.CATEGORY_DEFAULT); this.cordova.startActivityForResult((Plugin) this, intentScan, REQUEST_CODE); }
/** * Get image from photo library. */ public void getImage() { Intent intent = new Intent(this.cordova.getActivity().getApplicationContext() , GalleryActivity.class); this.cordova.startActivityForResult((Plugin) this, intent, 11); }