使用Android的Mobile Vision API扫描QR码

时间:2015-10-29 17:57:05

标签: java android qr-code android-vision

我按照tutorial关于如何构建可以扫描QR码的Android应用程序。

这是完整的代码。我使用等级compile 'com.google.android.gms:play-services:7.8.0'添加了Google Play服务。

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="bitinvent.io.qrscanner" >

    <meta-data android:name="com.google.android.gms.vision.DEPENDENCIES" android:value="barcode"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.CAMERA"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <SurfaceView
        android:id="@+id/cameraView"
        android:layout_width="640px"
        android:layout_height="480px"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"/>

    <TextView
        android:id="@+id/infoTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/cameraView"
        android:layout_marginLeft="16dp"
        android:text="Nothing to read"
        android:textSize="20sp"/>

</RelativeLayout>

MainActivity.java

package bitinvent.io.qrscanner;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.util.SparseArray;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.widget.TextView;

import com.google.android.gms.vision.CameraSource;
import com.google.android.gms.vision.Detector;
import com.google.android.gms.vision.barcode.Barcode;
import com.google.android.gms.vision.barcode.BarcodeDetector;

import java.io.IOException;

public class MainActivity extends Activity {

    private SurfaceView cameraView;
    private TextView barcodeInfo;
    private CameraSource cameraSource;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        cameraView = (SurfaceView) findViewById(R.id.cameraView);
        barcodeInfo = (TextView) findViewById(R.id.infoTextView);

        BarcodeDetector detector = new BarcodeDetector.Builder(this).setBarcodeFormats(Barcode.QR_CODE).build();
        cameraSource = new CameraSource.Builder(this, detector).setRequestedPreviewSize(640, 480).build();

        cameraView.getHolder().addCallback(new SurfaceHolder.Callback() {
            @Override
            public void surfaceCreated(SurfaceHolder holder) {
                try {
                    cameraSource.start(cameraView.getHolder());
                } catch (IOException e) {
                    Log.e("CAMERA SOURCE", e.getMessage());
                }
            }

            @Override
            public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {

            }

            @Override
            public void surfaceDestroyed(SurfaceHolder holder) {
                cameraSource.stop();
            }
        });

        detector.setProcessor(new Detector.Processor<Barcode>() {
            @Override
            public void release() {

            }

            @Override
            public void receiveDetections(Detector.Detections<Barcode> detections) {
                final SparseArray<Barcode> barcodes = detections.getDetectedItems();
                if (barcodes.size() != 0) {
                    barcodeInfo.post(new Runnable() {
                        @Override
                        public void run() {
                            barcodeInfo.setText(barcodes.valueAt(0).displayValue);
                        }
                    });
                }
            }
        });
    }
}

我在运行Android 4.4.2的HTC Desire 816上进行了测试。但它似乎没有用。摄像机视图处于活动状态,但当指向QR码时,它不会检测到任何内容。但也不会发生错误或崩溃。

我错过了什么吗?

4 个答案:

答案 0 :(得分:0)

我是Android开发的新手,但我使用播放服务8.1来学习本教程。工作

代码与您的代码非常相似。唯一的区别是我在应用程序级别下有元标记,并且我删除了.setBarcodeFormats(Barcode.QR_CODE),因为它将其专门限制为QR类型代码。

也在风景中使用应用程序,因为肖像不适合我。即使在QR码的风景中,我有时也不得不慢慢地将QR码移离相机,直到它能够识别它为止。

答案 1 :(得分:0)

您是否在设备中启用了互联网连接? 要通过Google Play服务下载数据;它需要通过设备进行互联网连接,但您无需提供任何许可。

答案 2 :(得分:0)

尝试移动以下行

<meta-data android:name="com.google.android.gms.vision.DEPENDENCIES" android:value="barcode" />

<intent-filter/>

之后立即显示在您的活动代码中

所以看起来像这样

<meta-data android:name="com.google.android.gms.vision.DEPENDENCIES" android:value="barcode" /> </activity>

Lemme知道是否有帮助

答案 3 :(得分:0)

最后,我让它在我这边工作。我想分享我现在在我的应用程序中实现QR代码扫描的过程和代码。我实际上并没回答你的问题。但是,我没有从StackOverflow找到任何有关如何使用Google Vision API实现QR代码扫描的良好帮助。我查看了你在问题中指出的教程。但是,该教程对我也没有多大帮助。因此,我在我的应用程序中放下了实现QR码扫描的类和步骤。

首先,您需要一些gradle依赖项。因此,在build.gradle文件中,添加以下依赖项。

dependencies {
    compile 'com.android.support:design:25.3.1'
    compile 'com.google.android.gms:play-services-vision:10.2.1'
}

然后,您需要在项目中包含以下五个类。我在这里添加课程。如有必要,请导入缺少的课程。

  1. CameraSource.java
  2. CameraSourcePreview.java
  3. BarcodeCaptureActivity.java
  4. BarcodeGraphicTracker.java
  5. BarcodeTrackerFactory.java
  6. 现在BarcodeCaptureActivity的布局也需要放在layout文件夹中。

    这是您需要的barcode_capture.xml布局。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/topLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:keepScreenOn="true"
        android:orientation="vertical">
    
        <!-- Do not forget to replace with your package name where the class is located -->
        <com.example.yourpackage.camera.CameraSourcePreview
            android:id="@+id/preview"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    
    </LinearLayout>
    

    BarcodeCaptureActivity的清单中需要一些字符串和活动条目。以下是您需要在strings.xml中添加的字符串。

    <!-- QR Code related strings -->
    <string name="permission_camera_rationale">Access to the camera is needed for detection</string>
    <string name="no_camera_permission">This application cannot run because it does not have the camera permission.  The application will now exit.</string>
    <string name="low_storage_error">Face detector dependencies cannot be downloaded due to low device storage</string>
    <string name="ok">OK</string>
    

    AndroidManifest.xml应该有BarcodeCaptureActivity的新条目,如下所示。

    <activity
        android:name=".util.scanner.BarcodeCaptureActivity"
        android:theme="@style/Theme.AppCompat" />
    

    现在您的设置已完成,您可以打开相机扫描条形码或QR码。只需在必要时调用以下initiateScan函数。

    public static final int RC_BARCODE_CAPTURE = 9001;
    
    public void initiateScan() {
        Intent intent = new Intent(YourActivity.this, BarcodeCaptureActivity.class);
        startActivityForResult(intent, RC_BARCODE_CAPTURE);
    }
    

    请注意,在致电initiateScan功能之前,您需要向用户请求相机许可。在授予摄像机许可权后,您将调用initiateScan功能。

    initiateScan功能将打开扫描仪,然后在成功扫描后,它将返回到呼叫ActivityFragment。因此,您需要在调用onActivityResultActivity中使用Fragment函数。

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
    
        if (resultCode == CommonStatusCodes.SUCCESS && requestCode == RC_BARCODE_CAPTURE) {
            if (data == null) return;
            Barcode barcode = data.getParcelableExtra(BarcodeCaptureActivity.BarcodeObject);
            final String scanResult = barcode.displayValue;
            if (scanResult == null) return;
    
            doSomethingWithTheScanResult(scanResult);
        }
    }
    

    不要忘记在CAMERA文件中添加AndroidManifest.xml权限。

    <uses-permission android:name="android.permission.CAMERA" />
    

    希望有助于使用Google Vision API更轻松地集成QR代码扫描程序。我为示例QR码扫描程序应用程序添加了github project。请看看。