I'm new here to stack overflow though I've been reading for quite a while on PHP and some android questions I had.
My question is how can I get the data from barcode scanner (just the UPC code and image) so I can insert it into a MySQL table?
I'll figure out the MySQL table insert on my own but this is just killing me! I'm pretty new to android apps and such but I'm very determined to get my idea off the ground and start selling it in the market. So far I am able to initiate the scanner thanks to Zxing's URL I saw on their WIKI http://zxing.appspot.com/scan
That initiates the scanner on the click of a button in my app. It reads and works but I don't know how to get the data from the results.
I have looked up and down that article... i get that i need to pretty much just insert code into different places, however on that article page what does it mean by put this in your activity?
`public void onActivityResult(int requestCode, int resultCode, Intent intent) {
IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
if (scanResult != null) {
// handle scan result
}
// else continue with any other code you need in the method
...
}`
Also where do i put this code?
`IntentIntegrator integrator = new IntentIntegrator(yourActivity);
integrator.initiateScan();`