修改 ZXING Barcode Scanner 项目,以便轻松地在 Android 上检测 QR 码和实现 AR 功能
修改 ZXING Barcode Scanner 项目,以便轻松地在 Android 上检测 QR 码和实现 AR 功能
This project implements an Android view which show camera and notify when there's a QR code inside the preview.
Some Classes of camera controls and autofocus are taken and slightly modified from Barcode Scanner Android App.
You can also use this for Augmented Reality purposes, as you get QR control points coordinates when decoding.
onQRCodeReadListener, and let implements required methods or set a onQRCodeReadListener to the QRCodeReaderView object
<com.dlazaro66.qrcodereaderview.QRCodeReaderView
android:id="@+id/qrdecoderview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
…
Add QRCodeReaderView dependency to your build.gradle
dependencies{
compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.3'
}
Note: There is an issue with gradle 2.10, if you declare your dependency and it can't be found in jCenter repository (could not find qrcodereaderview.jar Searched in the following locations: or similar), try to declare the library dependency like this:
dependencies{
compile ('com.dlazaro66.qrcodereaderview:qrcodereaderview:2.0.3@aar'){
transitive = true
}
}
And in some cases, you need to clean your Gradle cache
./gradlew build --refresh-dependencies
Please send a PR or open an issue with your comments. See CONTRIBUTING file for further information
Does your app use QRCodeReaderView? If you want to be featured on this list drop me a line.
Copyright 2017 David Lázaro
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
暂无开放 Issues,或尚未同步最近议题。