a short example:
I am scanning a qr code like "WIFI:S:The SSID;;" with the Barcode Scanner app and it successfully handles the scan result internally and opens the wifi settings.
When i am using the zxing library via Intent integration from within my own app i get the result back in onActivityResult. Now i have the text of the scanned code, but i have to handle it all by myself.
But the logic is already there, why should I implement it again? Can i somehow tell the zxing library to handle scan results internally?
Goddchen