Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Just donwload the barcode Scanner (QR-Code Scanner) apk file. </p> <p><a href="http://www.aapktop.com/tag/barcode-scanner-apk">http://www.aapktop.com/tag/barcode-scanner-apk</a> <a href="http://www.4shared.com/android/2lwrpeHZ/Barcode_Scanner.html">http://www.4shared.com/android/2lwrpeHZ/Barcode_Scanner.html</a> <a href="http://code.google.com/p/zxing/downloads/detail?name=BarcodeScanner4.31.apk">http://code.google.com/p/zxing/downloads/detail?name=BarcodeScanner4.31.apk</a></p> <p>Install it your device (not on emulator).</p> <p>now follow these steps.</p> <ol> <li>create a new project</li> <li>place a button in your XML file.</li> <li><p>Make a click event for it and call the (QR-Code Scanner) via intent as</p> <pre><code> // Scan Handler btnScan.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent( "com.google.zxing.client.android.SCAN"); intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); startActivityForResult(intent, 0); } }); </code></pre></li> <li><p>Override the onActivityResult Method as</p> <pre><code>// ZXing Result Handler public void onActivityResult(int requestCode, int resultCode, Intent intent) { if (requestCode == 0) { if (resultCode == RESULT_OK) { contents = intent.getStringExtra("SCAN_RESULT"); // This will contain your scan result String format = intent.getStringExtra("SCAN_RESULT_FORMAT"); } } </code></pre></li> </ol> <p><strong>Q2</strong></p> <pre><code>Answer </code></pre> <p>there are many links out there you can generate the QR-CODE of any type freely. just google it "Online QR CODE generater" <a href="http://qrcode.kaywa.com/">http://qrcode.kaywa.com/</a></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload