我正在使用Embarcadero RAD Studio10.2开发一个Android应用程序,以部署在Zebra TC25上。我正试图通过点击屏幕上的按钮来激活扫描仪。(就像按下键盘两侧的黄色按钮一样)
procedure TMainForm.btnScanClick(Sender: TObject);
var
Intent: JIntent; //Declares the intent object
begin
try
Intent := TJIntent.Create;
Intent.setType(StringToJString('text/pas'));
Intent.setAction(StringToJString('com.symbol.datawedge.api.ACTION'));
Intent.putExtra(StringToJString('com.symbol.datawedge.api.SOFT_SCAN_TRIGGER'), StringtoJString('START_SCANNING'));
if MainActivity.getPackageManager.queryIntentActivities(Intent, TJPackageManager.JavaClass.MATCH_DEFAULT_ONLY).size > 0 then
MainActivity.startActivity(Intent) //Calls startActivity() to send the intent to the system.
else
mmLogs.Lines.Add('Erreur: '+DateTimeToStr(now)+' - Receiver not found');
except
on E:Exception do
mmLogs.Lines.Add('Erreur: '+DateTimeToStr(now)+' - btnScanClick - '+E.Message);
end;
end;
以下是活动部分的androidManifest内容。
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
android:label="%activityLabel%"
android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
android:launchMode="singleTask">
<!-- Tell NativeActivity the name of our .so -->
<meta-data android:name="android.app.lib_name"
android:value="%libNameValue%" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="com.wa.ZebraDW.ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
我从这件事中得到了灵感:
- https://techdocs.zebra.com/datawedge/6-6/guide/output/intent/#singledecodemode
- http://docwiki.embarcadero.com/CodeExamples/Sydney/en/FMX.Android_Intents_Sample
我总是在备忘录中收到关于“Receiver Not Found”的错误信息。设备不会开始扫描。
1条答案
按热度按时间f2uvfpb91#
这在Delphi 10.3和Zebra TC56/TC55测试设备上运行良好。AndroidManifest保持不变,不需要任何其他条目。