MVBarcodeReader


Source link: https://github.com/iamMehedi/MVBarcodeReader

MVBarcodeReader

A Barcode scanning library for Android. Uses the Google Play Services' mobile vision api for barcode detection.

Setup

Maven

<dependency>
<groupId>online.devliving</groupId>
<artifactId>mvbarcodereader</artifactId>
<version>LATEST_VERSION</version>
<type>pom</type> </dependency>

Gradle

compile 'online.devliving:mvbarcodereader:LATEST_VERSION'

Add following dependencies to your app's gradle file

compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.google.android.gms:play-services-basement:11.0.1' compile 'com.google.android.gms:play-services-vision:11.0.1' compile 'com.android.support:design:25.3.1' compile 'com.android.support:support-annotations:25.3.1'

Usage

Scanning Modes

  • SINGLE_AUTO: The fastest mode. Returns the first barcode it can detect as soon as possible.
  • SINGLE_MANUAL: Detects and highlights all the barcode it can find but returns only the one that user chooses by tapping.
  • MULTIPLE: Detects and highlights all the barcode it can find. Returns all the barcodes on tap.

Barcode Types

You can view this link for a list of supported barcode formats.

Use the standalone scanner

launch the scanner from your Activity like this:

new MVBarcodeScanner.Builder()

.setScanningMode(mMode)

.setFormats(mFormats)

.build()

.launchScanner(this, REQ_CODE);

You'll receive the scanned barcode/barcodes in your Activity's onActivityResult

if (requestCode == REQ_CODE) {

 if (resultCode == RESULT_OK && data != null

&& data.getExtras() != null) {

  if (data.getExtras().containsKey(MVBarcodeScanner.BarcodeObject)) {

Barcode mBarcode = data.getParcelableExtra(MVBarcodeScanner.BarcodeObject);

  
}
 else if (data.getExtras().containsKey(MVBarcodeScanner.BarcodeObjects)) {

List<Barcode> mBarcodes = data.getParcelableArrayListExtra(MVBarcodeScanner.BarcodeObjects);

  
}

 
}

}

Use the scanner fragment

You can use the BarcodeCaptureFragment to scan barcodes. Just add the fragment to your Activity

MVBarcodeScanner.ScanningMode mode = null; @MVBarcodeScanner.BarCodeFormat int[] formats = null;  BarcodeCaptureFragment fragment = BarcodeCaptureFragment.instantiate(mode, formats);
 getSupportFragmentManager().beginTransaction()

  .add(R.id.container, fragment)

  .commit();

Then make the the Activity implement the BarcodeCaptureFragment.BarcodeScanningListener so that you can receive results from the fragment or you can set the listener directly to the fragment


  fragment.setListener(new BarcodeCaptureFragment.BarcodeScanningListener() {

 @Override

 public void onBarcodeScanned(Barcode barcode) {

}

  @Override

 public void onBarcodesScanned(List<Barcode> barcodes) {

  
}

  @Override

 public void onBarcodeScanningFailed(String reason) {

  
}

}
);

Resources

Convenient stashing of simple data formats on Android with SharedPreferences

OXO Flavored ImageViewZoom.

A logcat alike overlay to display log messages in your app as independent overlay.

Material Design EditText with a delightful linear ripple in background.

Vertically ViewPager and vertically transformer for Android.

An easy way to test performance, security and functionality on real devices.

Upload your .apk today and Monkop will test it for you. Get detailed report in your inbox in less than 24 hrs!

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