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 库或任何其他 apache2(开源)的库。我创建了 core.jar 库。但我不想将原始 ZXing 项目中的所有源代码复制到我的项目中。我应该在我的项目中使用原始 ZXing 中的什么,以便我可以编码和生成 EAN 条形码以供之后使用?
这段代码使它成为可能:
Intent intent = new Intent("com.google.zxing.client.android.ENCODE"); intent.putExtra("ENCODE_FORMAT", "EAN_13"); intent.putExtra("ENCODE_DATA", "3800065711135"); startActivity(intent);