在 DataWedge 中以编程方式禁用扫描仪
Disable scanner programmatically in DataWedge
实际上我使用 DataWedge
中的 Output Intent
将解码数据发送到我的应用程序,因此在应用程序中记录了一个获取解码数据的 BroadcastReceiver
private BroadcastReceiver myBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (Objects.equals(action, getResources().getString(R.string.activity_intent_filter_action))) {
// Received a barcode scan
try {
displayScanResult(intent);
} catch (Exception e) {
// Catch if the UI does not exist when we receive the broadcast
}
}
}
};
问题是是否可以通过某种方式在不使用 EMDK 的情况下禁用扫描仪?
如果满足以下条件,我将能够禁用扫描:
if(Alerts.dialogError != null && Alerts.dialogError.isShowing()){
// Here i should block the scanner
}
是的,有两种方法,其中最简单的是:
Intent dwIntent = new Intent();
dwIntent.setAction("com.symbol.datawedge.api.ACTION");
// Enable
dwIntent.putExtra("com.symbol.datawedge.api.SCANNER_INPUT_PLUGIN", "ENABLE_PLUGIN");
// or Disable
dwIntent.putExtra("com.symbol.datawedge.api.SCANNER_INPUT_PLUGIN", "DISABLE_PLUGIN");
sendBroadcast(dwIntent);
有关更多上下文,我刚刚在 https://developer.zebra.com/blog/quickly-suspend-scanning-your-app-datawedge
上写了一篇关于此的开发人员文章
实际上我使用 DataWedge
中的 Output Intent
将解码数据发送到我的应用程序,因此在应用程序中记录了一个获取解码数据的 BroadcastReceiver
private BroadcastReceiver myBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (Objects.equals(action, getResources().getString(R.string.activity_intent_filter_action))) {
// Received a barcode scan
try {
displayScanResult(intent);
} catch (Exception e) {
// Catch if the UI does not exist when we receive the broadcast
}
}
}
};
问题是是否可以通过某种方式在不使用 EMDK 的情况下禁用扫描仪? 如果满足以下条件,我将能够禁用扫描:
if(Alerts.dialogError != null && Alerts.dialogError.isShowing()){
// Here i should block the scanner
}
是的,有两种方法,其中最简单的是:
Intent dwIntent = new Intent();
dwIntent.setAction("com.symbol.datawedge.api.ACTION");
// Enable
dwIntent.putExtra("com.symbol.datawedge.api.SCANNER_INPUT_PLUGIN", "ENABLE_PLUGIN");
// or Disable
dwIntent.putExtra("com.symbol.datawedge.api.SCANNER_INPUT_PLUGIN", "DISABLE_PLUGIN");
sendBroadcast(dwIntent);
有关更多上下文,我刚刚在 https://developer.zebra.com/blog/quickly-suspend-scanning-your-app-datawedge
上写了一篇关于此的开发人员文章