Data Capture View Listener
Defined in package com.scandit.datacapture.core.ui
- DataCaptureViewListener
interface DataCaptureViewListener
Added in version 6.0.0
Listener for observing the data capture view. This listener is typically used when you want to react to orientation and size changes, e.g. to adjust view finder and scan area parameters.
To receive callback when screen rotates or keyboard opens you may have to add android:configChanges flag on your activity declaration in AndroidManifest.xml file.
<activity android:name="SampleActivity" android:configChanges="orientation|keyboardHidden|screenSize"/>
- onSizeChanged(width, height, screenRotation)
void
onSizeChanged(int
width,int
height,int
screenRotation)Added in version 6.0.0
Invoked when the data capture view changes size or orientation.
Rotation parameter might have value of Surface.ROTATION_0, Surface.ROTATION_90, Surface.ROTATION_180 or Surface.ROTATION_270.
Note
If you’re interested in the actual device orientation and not the one of the preview surface, check out the DeviceOrientationMapper.