ZXing (Android) を使用して、このような PDF417 バーコード スキャンを開始すると...
List<String> oDesiredFormats = Arrays.asList("PDF_417".split(","));
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.initiateScan(oDesiredFormats);
...そして、「すべてのコード」(PDF417とおそらく他のいくつかを除く)のバーコードスキャンを次のように開始します...
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.initiateScan();
...では、両方 (すべての標準コードと PDF417) を認識する単一のバーコード スキャンをどのように開始しますか? 前もって感謝します!