Код: Выделить всё
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);
Подробнее здесь: https://stackoverflow.com/questions/793 ... -with-java
Мобильная версия