GithubHelp home page GithubHelp logo

justmaaarco / zxing-android-embedded Goto Github PK

View Code? Open in Web Editor NEW

This project forked from journeyapps/zxing-android-embedded

0.0 1.0 0.0 9.23 MB

Port of the ZXing Android application as an Android library project, for embedding in an Android application.

License: Apache License 2.0

Java 100.00%

zxing-android-embedded's Introduction

ZXing Android Embedded

Barcode scanning library for Android, using ZXing for decoding.

The project is loosly based on the ZXing Android Barcode Scanner application, but is not affiliated with the official ZXing project.

Features:

  1. Can be used via Intents (little code required).
  2. Can be embedded in an Activity, for advanced customization of UI and logic.
  3. Scanning can be performed in landscape or portrait mode.
  4. Camera is managed in a background thread, for fast startup time.

Version 3

Where version 2 was essentially just a stripped-down version of the Barcode Scanner application, version 3 is a rewrite of a large part of the codebase, making it more versatile and customizable.

With the rewrite, many APIs for UI customization were removed. Instead, it is now recommended to create a custom Activity using the lower-level components directly (see Customization for details).

Other notable changes:

  • The camera is now loaded in a background thread, making the activity start faster.
  • The camera preview and decoding now function correctly in any orientation.

Adding aar dependency with Gradle

From version 3 this is a single library, supporting Gingerbread and later versions of Android (API level 9+). If you need support for earlier Android versions, use version 2.

Add the following to your build.gradle file:

repositories {
    jcenter()
}

dependencies {
    compile 'com.journeyapps:zxing-android-embedded:3.0.2@aar'
    compile 'com.google.zxing:core:3.2.0'
}

Usage with Maven

Maven is not supported currently, but it is possible that the aar can be used. Pull requests are welcome.

Usage with IntentIntegrator

Launch the intent with the default options:

new IntentIntegrator(this).initiateScan(); // `this` is the current Activity

Use from a Fragment:

IntentIntegrator.forFragment(this).initiateScan(); // `this` is the current Fragment

// If you're using the support library, use IntentIntegrator.forSupportFragment(this) instead.

Customize options:

IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setDesiredBarcodeFormats(IntentIntegrator.ONE_D_CODE_TYPES);
integrator.setPrompt("Scan a barcode");
integrator.setCameraId(0);  // Use a specific camera of the device
integrator.setBeepEnabled(false);
integrator.setBarcodeImageEnabled(true);
integrator.initiateScan();

See IntentIntegrator for more options.

Changing the orientation

To change the orientation, create a new Activity extending CaptureActivity, and specify the orientation in your AndroidManifest.xml.

Sample:

public class CaptureActivityAnyOrientation extends CaptureActivity {

}
<activity android:name=".CaptureActivityAnyOrientation"
          android:screenOrientation="fullSensor"
          android:stateNotNeeded="true"
          android:theme="@style/zxing_CaptureTheme"
          android:windowSoftInputMode="stateAlwaysHidden">

</activity>
IntentIntegrator integrator = new IntentIntegrator(this);
integrator.setCaptureActivity(CaptureActivityAnyOrientation.class);
integrator.setOrientationLocked(false);
integrator.initiateScan();

The previous API for integrator.setOrientation() was removed. It caused the Activity to be created in landscape orientation, then destroyed and re-created in the requested orientation, which creates a bad user experience. The only way around this is to specify the orientation in the manifest.

Customization

For more control over the UI or scanning behaviour, some components may be used directly:

  • BarcodeView: Handles displaying the preview and decoding of the barcodes.
  • CompoundBarcodeView: Combines BarcodeView with a viewfinder for feedback, as well as some status / prompt text.
  • CaptureManager: Manages the InactivityTimer, BeepManager, orientation lock, and returning of the barcode result.

These components can be used from any Activity.

Samples:

Building locally

./gradlew assemble

To deploy the artifacts the your local Maven repository:

./gradlew publishToMavenLocal

You can then use your local version by specifying in your build.gradle file:

repositories {
    mavenLocal()
}

Sponsored by

Journey - Build enterprise mobile apps for iOS and Android. Work in the cloud, code in JavaScript and forget about back-end development.

License

Apache License 2.0

zxing-android-embedded's People

Contributors

rkistner avatar rehan-vanzyl avatar bugmaker avatar martar avatar alberdi avatar bryancallahan avatar commjoen avatar

Watchers

Marco Di Rosa avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.