The best way is to install the BarcodeScanner application from google
(it's free on the market), then you can call it with an Intent, and
get the results back in a String.

Something like:
Call the QRCOde:
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
                        intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
                        startActivityForResult(intent, CODE_ACTIVITY_QR);

in the onActivityResult:
String contents = intent.getStringExtra("SCAN_RESULT");
contents will have the content of the qrcode.



On 15 nov, 07:56, David Toledo <[email protected]> wrote:
> Hi All
>
> Exist some way from read the  barcode using the android sdk ?
>
> Thanks
> David

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to