Hi,
We are unable to hide camera preview in Clover Station Pro(Clover_503).
This is the code we are using
mBarcodeScanner = new BarcodeScanner(this); registerBarcodeScanner(); Bundle extras = new Bundle(); extras.putBoolean(Intents.EXTRA_LED_ON, false); extras.putBoolean(Intents.EXTRA_SHOW_PREVIEW, false); extras.putBoolean(Intents.EXTRA_SHOW_MERCHANT_PREVIEW, false); extras.putBoolean(Intents.EXTRA_SHOW_CUSTOMER_PREVIEW, false); extras.putBoolean(Intents.EXTRA_SHOW_CLOSE_BUTTON, false); extras.putBoolean(Intents.EXTRA_SHOW_LED_BUTTON, false); extras.putBoolean(Intents.EXTRA_START_SCAN, true); extras.putInt(Intents.EXTRA_SCANNER_FACING, 0); mBarcodeScanner.executeStartScan(extras);
Hiding camera preview working fine in Mini. Can any one please check it.
Thank you.