gpt4 book ai didi

android - 实现条码扫描仪

转载 作者:行者123 更新时间:2023-11-30 03:51:13 25 4
gpt4 key购买 nike

我正在开发一个应用程序,我必须在其中使用条码扫描器 来扫描条码,经过大量搜索后我得到了以下代码:

 Intent intent = new Intent("com.google.zxing.client.android.SCAN");

借助这段代码,用户可以实现 Zxing 的条码扫描器,但我想以编程方式实现我的条码扫描器,我不想第三方应用程序。我用了Integrating the ZXing library directly into my Android application制作独立条形码扫描仪的链接,但制作core.jar后我不知道该做什么请帮助我集成条码扫描器。任何帮助将不胜感激..提前致谢

最佳答案

为结果启动 Activity 或只是为此的便利代码:

IntentIntegrator integrator = new IntentIntegrator(yourActivity);
integrator.initiateScan();

并使用此方法接收结果:

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
if (scanResult != null) {
// handle scan result
}
// else continue with any other code you need in the method
...
}

更多信息请引用此链接:

http://code.google.com/p/zxing/wiki/ScanningViaIntent

关于android - 实现条码扫描仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14119847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com