Click or drag to resize

BarcodeManager.ActionStartDecode Field

Barcode start decode intent action.

Namespace: Com.Datalogic.Decode
Assembly: datalogic-xamarin-sdk (in datalogic-xamarin-sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
VB
public const String ActionStartDecode = "com.datalogic.decode.action.START_DECODE"

Field Value

Type: String
Remarks
Barcode start decode intent action. It is possible to start a capture session in order to scan a barcode from an application, sending a specific broadcast intent.

Example:
public int startDecodingIntent() {
  Intent myintent = new Intent();
  myintent.setAction(ACTION_START_DECODE);
}
Otherwise application can associate this intent to a physical key code through the KeyboardManager mapIntent method.

[Android Documentation]

See Also