[android-developers] Re: Barcodes

2008-10-01 Thread MrSnowflake
I do not have any experience with other barcode reading libraries, but I suppose the zxing is one of the most robust and open source libraries around. With a lot of supported platforms. On 30 sep, 16:41, Peli [EMAIL PROTECTED] wrote: zxing is a barcode (amongst others) reader. Actually there

[android-developers] Re: Barcodes

2008-09-30 Thread MrSnowflake
http://code.google.com/p/zxing/ is a barcode (amongst others) reader. It is opensource and has a android client. On 30 sep, 01:50, Peli [EMAIL PROTECTED] wrote: If you look at the OpenIntents list of applicationshttp://www.openintents.org/en/applications you will find ZXing which is a

[android-developers] Re: Barcodes

2008-09-30 Thread Peli
Yes, that's exactly the one I meant. I wanted to stress that it is not necessary to copy the code into one's application (although that is also possible and supported), but one can simply send an intent to open the ZXing application, and obtain the result back. Peli On Sep 30, 4:10 pm,

[android-developers] Re: Barcodes

2008-09-30 Thread Peli
zxing is a barcode (amongst others) reader. Actually there are not so many barcode readers for Android. The top-50 winning apps that read barcode were all using the ZXing library made by Google employees. The only independent barcode reader for Android that I know (Moseycode:

[android-developers] Re: Barcodes

2008-09-29 Thread Peli
If you look at the OpenIntents list of applications http://www.openintents.org/en/applications you will find ZXing which is a multi-format 1D/2D barcode reader. You can simply start it as an intents, and get the read-out values back. Peli www.openintents.org On 29 Sep., 21:02, Brad Gies