I've integrated the BarCode Scanner application into my application. Now I want to use the scanned code to compare it with my database and find the product. How can I get the code? Where is it saved?
Thanks
|
I've integrated the BarCode Scanner application into my application. Now I want to use the scanned code to compare it with my database and find the product. How can I get the code? Where is it saved? Thanks |
|||||||||
|
|
You should be calling zxing in startActivityForResult(). If so then when it is done it will return to your activity in a call to ActivityResult() which will contain the bundle in the intent with your results. Here is some sample code from this question on SO
|
|||||||
|