0

Possible Duplicate:
How to use Zxing in android

"captureActivity" capture QR code image from camera and after decoding it, it shows results according to type of data stored in QR code. e.g. if website URL is encoded in QR code, the result screen will have a button to open that URL in browser.

I need to read image from SD card, decode it and handle the output in the same manner zxing does in case of decoding via "captureActivity".

I have created a class which extends ListActivity, which browse the SD card images. How can I get the result on onListItemClick event same like it does after capturing image from camera?

Community
  • 1
  • 1
Kulin Choksi
  • 761
  • 1
  • 11
  • 30
  • If you just want to decode image via bitmap rather than via camera,you can take a look at this: http://stackoverflow.com/questions/3422651/decoding-qr-code-from-image-stored-on-the-phone-with-zxing-on-android-phone/14178993#14178993 – nut Jan 06 '13 at 05:45
  • please specify the reason for down vote – Kulin Choksi Jan 07 '13 at 12:28

1 Answers1

1

have a look into this. I have given the detailed answer about Zxing QR scanner.

Community
  • 1
  • 1
Seshu Vinay
  • 13,560
  • 9
  • 60
  • 109