public interface BarcodeEventListener
Modifier and Type | Method and Description |
---|---|
default void |
onConnect()
|
default void |
onDecodeStart()
|
default void |
onDecodeStop()
|
default void |
onDisconnect()
|
default void |
onImageData(android.graphics.Bitmap bitmap,
byte[] byteArray,
int i)
Scanner.takePicture(int) による撮影結果が返ってきた際に呼ばれるCalled when the shooting result by Scanner.takePicture(int) is returned. |
default void |
onReadData(ReadData readData)
Scanner.startScan() やスキャナのトリガボタンで読み取りを開始し、コードを読み取った際に呼ばれるIt is called when the code is read by starting scanning with the Scanner.startScan() or the trigger button of the scanner. |
default void |
onTimeout()
Scanner.startScan() やスキャナのトリガボタンで読み取りを開始し、設定された読み取り時間までにコードが読みとれなかった際に呼ばれるIt is called when scanning is started with Scanner.startScan() or the trigger button of the scanner and the code cannot be read by the set reading time. |
default void onReadData(ReadData readData)
Scanner.startScan()
やスキャナのトリガボタンで読み取りを開始し、コードを読み取った際に呼ばれるScanner.startScan()
or the trigger button of the scanner.default void onTimeout()
Scanner.startScan()
やスキャナのトリガボタンで読み取りを開始し、設定された読み取り時間までにコードが読みとれなかった際に呼ばれるScanner.startScan()
or the trigger button of the scanner and the code cannot be read by the set reading time.default void onDecodeStart()
default void onDecodeStop()
default void onConnect()
default void onDisconnect()
default void onImageData(android.graphics.Bitmap bitmap, byte[] byteArray, int i)
Scanner.takePicture(int)
による撮影結果が返ってきた際に呼ばれるScanner.takePicture(int)
is returned.