- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们的项目包括制作一个处理团体付款的应用程序。您可以通过扫描包含您要加入的群组 ID 的二维码来加入群组。我们制作了一个 Activity “AddOrJoinActivity”,您可以在其中创建或加入群组(通过扫描二维码)。我制作了一个包含我的 CustomScanner 的新 Activity,它可以正常工作。然而,问题如下。我从“AddOrJoinActivity”中调用 Customscanner,但一旦代码被扫描,我希望程序打开 Activity “Groupdetails”,其中包含他/她刚刚加入的组的所有详细信息。
我尝试了以下方法:在“AddOrJoinActivity”中
IntentIntegrator ii = new IntentIntegrator(this)
ii.setCaptureActivity(CustomScanner.class).initiateScan();
在“自定义扫描仪”中
barcodeView =(CompoundBarcodeView)findViewById(R.id.customViewBarcode);
capture = new CaptureManager(this,barcodeView);
capture.initializeFromIntent(getIntent(),savedInstanceState);
capture.decode();
我尝试在 Customscanner 中创建一个包含 GroupsDetailActivity 并在 capture.initializeFromIntent() 中使用它的新 Intent ,但这没有用。
如何从 CustomScanner 启动 groupdetailsactivity?
提前致谢
最佳答案
你看过这个教程吗? http://code.tutsplus.com/tutorials/android-sdk-create-a-barcode-reader--mobile-17162
在您的情况下,扫描后,在您的 AddOrJoin
代码中,方法 onActivityResult
将自动执行。在该方法中,您将检索扫描结果,并且可以在数据库中施展魔法。
在魔法之后开始一个新的 Activity:
Intent intent = new Intent(this, NextActivity.class);
startActivity(intent);
这是我的看法。
关于android - 链接到 IntentIntegrator 的新 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34067713/
我如何导入 Zxing IntentIntegrator 类以在我的项目中使用它,它是一个库项目吗? Zxing IntentIntegrator 最佳答案 您需要使用 ant 将其项目编译为 JAR
我们的项目包括制作一个处理团体付款的应用程序。您可以通过扫描包含您要加入的群组 ID 的二维码来加入群组。我们制作了一个 Activity “AddOrJoinActivity”,您可以在其中创建或加
我对 ZXing 比较陌生,一直在探索他们的 API。我看过Using ZXing to create an android barcode scanning app和 getting scan re
我想在 Android 中为 IntentIntegrator 创建一个对象。 IntentIntegrator integrator = new IntentIntegrator(ZBarReade
我想以纵向布局启动 BarcodeScanner(因为我的整个应用程序都是纵向布局)。我也想知道,是否可以从 Google Play 一次安装两个应用程序(您在 list 文件中向 Barcode S
我做了一些研究(Stack Overflow 和网络),发现还有其他一些关于 Google Goggles 的问题以及将其与 Android 一起使用的可能性;通过一个 Intent 。我意识到它没有
我正在使用 ZXing Library 通过 Intent 从 Android 应用程序扫描条形码和 QR 码和 its port of the Android Application .我在我的 G
我是一名优秀的程序员,十分优秀!