簡體   English   中英

將QR碼掃描儀與Zxing集成時出錯

[英]Error in integrating QR code scanner with Zxing

我正在嘗試使用Zxing將QR碼掃描儀集成到我的android應用中。 我已按照以下步驟操作:

  1. 我已經下載了ZXing.zip文件並將其解壓縮。

  2. 將ZXing項目作為android現有項目打開,然后轉到android文件夾並打開android文件夾,還將core.jar文件包含到名為CaptureActivity的ZXing項目中。

  3. 我已經將CaptureActivity項目用作名為“ QRCodeSample”的項目中的庫。

這是我的MainActivity.java文件:

package com.charith.qrcodesample;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

    Button b1;
    TextView scanResult;
    String contents;
    public static final int REQUEST_CODDE = 1;
    protected static final String QR_CODE_MODE = null;

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

        b1 = (Button) findViewById(R.id.bScan);
        b1.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                Intent intent = new Intent("com.google.zxing.client.android.SCAN");
                intent.putExtra("SCAN_MODE",QR_CODE_MODE);
                startActivityForResult(intent, 0);
            }
        });
    }

    public void onActivityResult(int requestCode, int resultCode, Intent intent) {
        scanResult = (TextView) findViewById(R.id.tvContent);
        if(requestCode == 0) {
            if(resultCode == RESULT_OK) {
                contents = intent.getStringExtra("SCAN_RESULT");
                String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
                scanResult.setText(contents);
            }else if(resultCode == RESULT_CANCELED){
                scanResult.setText("Error");
            }
        }
    }

}

這是我的AndroidManifest.xml文件。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.charith.qrcodesample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="10" />

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.google.zxing.client.android.CaptureActivity"
            android:configChanges="orientation|keyboardHidden"
            android:screenOrientation="landscape"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
            android:windowSoftInputMode="stateAlwaysHidden" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="com.google.zxing.client.android.SCAN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.charith.qrcodesample.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

這是我的main_activity.xml文件。

<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"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/bScan"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="33dp"
        android:text="Scan" />

    <TextView
        android:id="@+id/tvContent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/bScan"
        android:layout_below="@+id/bScan"
        android:layout_marginTop="44dp"
        android:text="" />

</RelativeLayout>

我已經在Eclipse中使用模擬器檢查了我的應用。 然后我有以下錯誤:

The application has stopped unexpectedly. Please try again

如果有人能盡快澄清這個問題,將不勝感激。

首先,您已經復制並粘貼了我們的項目。 我假設您也復制了UI。 正如您在此處的許多問題中所看到的那樣,以及在https://code.google.com/p/zxing/wiki/LicenseQuestions中所討論的,開源許可證不允許這樣做。

其次,您已經復制並粘貼了AndroidManifest.xml聲明。 您在我們的名稱空間中聲明一個Activity並攔截我們的Intent 這將干擾我們的應用程序,並且不行。 刪除它並創建自己的清單。

但是第三,您似乎正在嘗試通過Intent進行集成。 這比這容易得多,並且與錯誤地復制和粘貼所有這些東西無關。 參見https://code.google.com/p/zxing/wiki/ScanningViaIntent

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM