All Projects → shenyuanqing → ZxingSimplify

shenyuanqing / ZxingSimplify

Licence: other
一个精简的安卓Zxing扫码库。(A Zxing simplify library for Android)

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to ZxingSimplify

Zxing
基于zxing的扫一扫,优化了扫描二维码速度,集成最新版本的jar包(zxing-core.jar 3.3.3),集成简单,速度快,可配置颜色,还有闪光灯,解析二维码图片,生成二维码等功能
Stars: ✭ 1,873 (+5102.78%)
Mutual labels:  zxing
ZxingTest
No description or website provided.
Stars: ✭ 35 (-2.78%)
Mutual labels:  zxing
ZXingSample
Working sample app for a blog post on barcode scanning and generating with ZXing
Stars: ✭ 20 (-44.44%)
Mutual labels:  zxing
Suiyue
碎阅APP
Stars: ✭ 177 (+391.67%)
Mutual labels:  zxing
Jsqrscanner
JavaScript QR Code scanner for HTML5 supporting browsers
Stars: ✭ 212 (+488.89%)
Mutual labels:  zxing
QRCodeCameraX
QRcode decoder based on CameraX & zxing-core & ML kit, in less than 50 lines
Stars: ✭ 111 (+208.33%)
Mutual labels:  zxing
Qrcodescanner
Android QR Code scanning library : QR Scanning library based on zxing for android devices API 15 and up
Stars: ✭ 117 (+225%)
Mutual labels:  zxing
WifiBarcodeSample
Sample code for my article in DotNetCurry magazine on scanning barcodes. In this sample you can generate and scan QR codes that contain a Wi-Fi connection string
Stars: ✭ 13 (-63.89%)
Mutual labels:  zxing
Instascan
HTML5 QR code scanner using your webcam
Stars: ✭ 2,657 (+7280.56%)
Mutual labels:  zxing
UVCCameraZxing
USB串口摄像头识别二维码
Stars: ✭ 82 (+127.78%)
Mutual labels:  zxing
Nbzxing
🔥 2020年最好用的开源扫码,全方位优化,强烈推荐!! 支持多种常规zxing无法扫出的码,用就完了!! 🔥
Stars: ✭ 184 (+411.11%)
Mutual labels:  zxing
Zxing Barcode
A barcode scanner based on zxing for android
Stars: ✭ 206 (+472.22%)
Mutual labels:  zxing
QRCodeView
用于简化二维码扫描的框架
Stars: ✭ 34 (-5.56%)
Mutual labels:  zxing
Qrcodereaderview
Modification of ZXING Barcode Scanner project for easy Android QR-Code detection and AR purposes
Stars: ✭ 1,873 (+5102.78%)
Mutual labels:  zxing
ZxingSupport
A Library based on Zxing, make you easy to develop 1D/2D barcode-scan App.
Stars: ✭ 15 (-58.33%)
Mutual labels:  zxing
Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+5780.56%)
Mutual labels:  zxing
ZxingScan
基于MLKit实现二维码,条形码识别;实现微信效果样式;
Stars: ✭ 99 (+175%)
Mutual labels:  zxing
Zxing-demo
A tutorial app to generate Barcode using Zxing.
Stars: ✭ 17 (-52.78%)
Mutual labels:  zxing
SCodes
This project is Qt & Qml wrapper for ZXing-C++ Library that is used for decoding 1D and 2D barcodes.
Stars: ✭ 55 (+52.78%)
Mutual labels:  zxing
gift-shop
A gift-shopping app, developed with android 5.0 widgets and transitions.
Stars: ✭ 15 (-58.33%)
Mutual labels:  zxing

ZxingSimplify

一个精简的安卓Zxing扫码库。(A Zxing simplify library for Android)

去除了ViewfinderView,使用XML布局。

ZxingSimplify ZxingSimplify

Gradle

dependencies {
    compile 'com.github.shenyuanqing.zxing:zxing-simplify:1.0.5'
}

Usage

Android 6.0以上在跳转到扫码页之前先取得运行时权限,具体参考MainActivity。

    /**
     * 跳转到扫码页
     */
    private void jumpScanPage() {
        startActivityForResult(new Intent(MainActivity.this, CaptureActivity.class),REQUEST_SCAN);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if(requestCode == REQUEST_SCAN && resultCode == RESULT_OK) {
            Toast.makeText(mContext,data.getStringExtra("barCode"),Toast.LENGTH_LONG).show();
        }
    }

Changelog

  • 1.0.5

    • 增加从相册选取二维码识别功能
    • 增加开关闪光灯功能
  • 1.0.4

    • 增加扫描二维码、条码等功能
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].