Our website uses necessary cookies to enable basic functions and optional cookies to help us to enhance your user experience. Learn more about our cookie policy by clicking "Learn More".
Accept All Only Necessary Cookies
Easy Barcode Scanner icon

Easy Barcode Scanner


Magic Len
2.0.9
  • Jun 20, 2018
    Update date
  • Everyone
  • Android 5.0+
    Android OS

About Easy Barcode Scanner

This is a very simple barcode scanner. There are no settings you need to handle.

"Easy Barcode Scanner" is a simple barcode scanner based on zBar Reader. The zBar Reader is implemented by C code so that it has high performance. With zBar, Easy Barcode Scanner can support QR Code, EAN-8, EAN-13, UPC-E, UPC-A, ISBN-10, ISBN-13, Interleaved 2 of 5, DataBar, DataBar Expanded, Codabar, Code 39, Code 93、Code 128 and PDF417. Data Matrix is supporting now, too.

"Easy Barcode Scanner" allows you to use any angle of camera and device to scan barcode, and you don't have to put barcode at the center of your camera. Becides, you can touch the camera preview to focus to a object, zoom in or zoom out. If you want to change your camera, only ONE click you need to do.

For Android Developer, you can use this Android SDK code below to scan barcode for your app:

final Intent intent = new Intent("org.magiclen.barcodescanner.SCAN");

final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);

if (list.size() > 0) {

intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); // Can also use PRODUCT_MODE, SCAN_MODE, QR_CODE_MODE

startActivityForResult(intent, 0);

} else {

// You may ask your user to install Easy Barcode Scanner

}

To get the scanning result, you must override onActivityResult method:

public void onActivityResult(final int requestCode, final int resultCode, final Intent data) {

if (requestCode == 0) {

if (resultCode == Activity.RESULT_OK) {

final String result = data.getStringExtra("SCAN_RESULT"); // Get scanning result

final String type = data.getStringExtra("code_type"); // Get code type

} else {

// Not scan any code yet

}

}

}

Moreover, if you want to generate a QR code you can use this Android SDK code below:

final Intent intent = new Intent("org.magiclen.barcodescanner.ENCODE");

final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);

if (list.size() > 0) {

intent.putExtra("ENCODE_DATA", "Put some string you want to encode");

startActivity(intent);

} else {

// You may ask your user to install Easy Barcode Scanner

}

If you have further interest in this app, you can check out our website at: https://magiclen.org/

Show More

Additional APP Information

Latest Version

2.0.9

Uploaded by

Thedeimantaxx Tiesiog

Requires Android

Android 5.0+

Content Rating

Everyone

What's New in the Latest Version 2.0.9

Last updated on Jun 20, 2018

Minor bug fixes and improvements. Install or update to the newest version to check it out!

Show More

Easy Barcode Scanner Screenshots

Easy Barcode Scanner posterEasy Barcode Scanner screenshot 1Easy Barcode Scanner screenshot 2Easy Barcode Scanner screenshot 3Easy Barcode Scanner screenshot 4Easy Barcode Scanner screenshot 5Easy Barcode Scanner screenshot 6Easy Barcode Scanner screenshot 7

Related Tags

Popular Articles In Last 24 Hours

Subscribe to APKPure
Be the first to get access to the early release, news, and guides of the best Android games and apps.
No thanks
Sign Up
Subscribed Successfully!
You're now subscribed to APKPure.