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プロジェクトから自分のプロジェクトにすべてのソースをコピーしたくありません。後で使用するEANバーコードをエンコードして生成できるように、元のZXingからプロジェクトに何を使用する必要がありますか?
このコードはそれを可能にしました:
Intent intent = new Intent("com.google.zxing.client.android.ENCODE"); intent.putExtra("ENCODE_FORMAT", "EAN_13"); intent.putExtra("ENCODE_DATA", "3800065711135"); startActivity(intent);