Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. static final String ACTION_SCAN = "com.google.zxing.client.android.SCAN";
  2.  
  3. @Override
  4. public void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.scanner);
  7. }
  8.  
  9. public void scanBar(View v) {
  10. try {
  11. Intent intent = new Intent(ACTION_SCAN);
  12. intent.putExtra("SCAN_MODE", "PRODUCT_MODE");
  13. startActivityForResult(intent, 0);
  14. } catch (ActivityNotFoundException anfe) {
  15. showDialog(BarcodeQr.this, "No Scanner Found", "Download a scanner code activity?", "Yes", "No").show();
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement