MaterialBarcodeScanner


Source link: https://github.com/EdwardvanRaak/MaterialBarcodeScanner

MaterialBarcodeScanner

Easy to use barcode reader for your Android Project (Uses Google Mobile Vision API)

In active development so if you have a suggestion or feature request please feel free to open an issue!

###Overview

  • Integrate in a few minutes
  • Quick and simple api
  • No external apps required
  • Uses Google Mobile Vision API (fast, local and rotation free)
  • Automatically parses QR Codes, Data Matrix, PDF-417, and Aztec values
  • Supports 1D barcodes: EAN-13, EAN-8, UPC-A, UPC-E, Code-39, Code-93, Code-128, ITF, Codabar
  • Supports 2D barcodes: QR Code, Data Matrix, PDF-417, Aztec

#Setup ##1. Provide gradle dependency

compile 'com.edwardvanraak:MaterialBarcodeScanner:0.0.6-ALPHA'

##2. Build a MaterialBarcodeScanner

 private void startScan() {

/** 

* Build a new MaterialBarcodeScanner 

*/

final MaterialBarcodeScanner materialBarcodeScanner = new MaterialBarcodeScannerBuilder()

  .withActivity(MainActivity.this)

  .withEnableAutoFocus(true)

  .withBleepEnabled(true)

  .withBackfacingCamera()

  .withText("Scanning...")

  .withResultListener(new MaterialBarcodeScanner.OnResultListener() {

@Override

public void onResult(Barcode barcode) {

 barcodeResult = barcode;

 result.setText(barcode.rawValue);

}

  
}
)

  .build();

materialBarcodeScanner.startScan();

  
}
 

Hook it up to a button

  fab.setOnClickListener(new View.OnClickListener() {

 @Override

 public void onClick(View view) {

  startScan();

 
}

}
);

##3. Start scanning!

Check out the full example project for code required for camera permissions on Android 6.0 Marshmallow

#Additional Setup

##Center tracking mode

By default a barcode is tracked/highlighted at the location at which it was found.
With center tracking mode a square image will be shown during scanning that will turn green when a barcode is found. Please note that you can still scan a barcode outside the center tracker! This is purely a visual change.

To activate center tracking mode simply call the following builder method:

.withCenterTracker()

If you want to provide your own image for the tracker you can use:

.withCenterTracker(R.drawable.your_tracker_image, R.drawable.your_detected_state_tracker_image):

##Exclusive barcode scanning

In some situations you might want to scan for only a certain type of barcode like QR-Codes or 2D barcodes. You can do this with the following builder methods:

.withOnlyQRCodeScanning() .withOnly3DScanning() .withOnly2DScanning()

If you want to scan for a very specific combination of barcodes you can setup the builder like this:

.withBarcodeFormats(Barcode.AZTEC | Barcode.EAN_13 | Barcode.CODE_93)  

##Screenshots

#Developed By

Resources

Cute library to implement SearchView in a Material Design Approach.

Lightweight HTTP client for Android.

Android button which can morph from one shape to another.

Android Test Automation.

Android library for Wearable Internet of Things class at URI. It provides wrappers to Google Play Services, and base classes for simple development.

AndroidChannel is helper library for inter thread communication between main thread and worker thread. AndroidChannel uses HandlerThread for inter thread communication.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes