Scan

la.droid.qr.scan

Scan a QR code with QR Droid.

Create an Intent with one of these actions:

la.droid.qr.scan
la.droid.qr.encode
la.droid.qr.decode

(Note that QR Droid package is “la.droid.qr“, so that’s why all actions have that prefix)

Use

public void startScan() {
    Intent intent = new Intent("la.droid.qr.scan"); 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="la.droid.qr.scan" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
            

Apps Providing an Implementation

Search on Github

Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)

For Specification Writers

Edit on Github