Is there any other library other than Zxing that can be used to create a QR code reader EVEN IF IT'S NOT FREE.
of-course a free one will be great. but I'm also willing to pay to get a library that's easy in customization and to save time.
thank you.
I've found the answer for my question here http://sourceforge.net/news/?group_id=189236
it's much faster than zxing and much easier to implement.
Thank you.
For iOS:
for iOS (zbar.sourceforge.net/iphone) and the documentation (zbar.sourceforge.net/iphone/sdkdoc/install.html)
there are no need to install zxing for implementing qr reader, Just create a class IntentIntegrator.java and IntentResult.java file and call from your activity.
Here is the source code for this....
Checkout full source code here
And IntentResult.java for cantaining the info of the selected bar code or qr code.
/** * */
now how to call these classes from your Activity
And in onActivityResult
I have the same issue. I downloaded the ZXing library and integrated it into my project. The integration is very hard and junky and I spend a lot of time to clean the project and to used only the QRCode part. Now it works but there is a known issue with some Motorola devices Atrix and DroidX (Android 2.3)where CaptureActivity shows a white screen instead of camera. This is an issue with the library but the guys from ZXing wont fix it. It seems that this issue is also present on Htc Nexus One. This is a post: https://groups.google.com/forum/#!topic/zxing/BofniyFVZaQ.
@Sean
I know you are the founder of ZXing. The Barcode scanner app is great but using it as a library into the application is not. I suggest to decouple the app and the library and to write a good documentation to it. Also I don't understand why you dropeed the support for iOS.