Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 zxing 扫描集成到我的应用程序中,但问题是当用户扫描某些内容时,会出现项目信息。我不希望这样,我希望扫描仪在扫描后返回我的应用程序。
Intent intent = new Intent(this, com.google.zxing.client.android.CaptureActivity.class); startActivityForResult(intent, 0);
这不是您通过 Intent 启动应用程序的方式,所以我认为您甚至没有启动 Barcode Scanner。
我认为您正在启动自己的内部副本,您不需要并且无论如何都应该删除它。真正的应用程序将响应您的意图。
这样做:https ://code.google.com/p/zxing/wiki/ScanningViaIntent