How to programatically configure Seuic device using android with java - Stack Overflow

admin2025-04-18  6

From my android app, I want to programatically set the scanner to have the End char to NONE and the Barcode Send Model to Broadcast. I made some configurations for a device with Zebra, but with Seuic idk...

Intent scanIntent = new Intent(Scanner.ACTION_SEND_BARCODE);
scanIntent.putExtra("End Char", "");
sendBroadcast(scanIntent);
IntentFilter filter = new IntentFilter("com.android.server.scannerservice.broadcast");
registerReceiver(new ScanReceiver(this), filter, Context.RECEIVER_NOT_EXPORTED); 

but I dont know the exact keys that I should put in Intent for the Seuic device

转载请注明原文地址:http://www.anycun.com/QandA/1744947134a89871.html