0

我正在尝试使用 Zxing 将 QR 码扫描仪集成到我的 android 应用程序中。我已按照以下步骤操作:

  1. 我已经下载了 ZXing.zip 文件并解压。

  2. 将 ZXing 项目作为 android 现有项目打开,然后转到 android 文件夹并打开 android 文件夹并将 core.jar 文件包含到名为 CaptureActivity 的 ZXing 项目中。

  3. 我在名为“QRCodeSample”的项目中使用了 CaptureActivity 项目作为库。

这是我的 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

如果有人能尽快澄清这个问题,将不胜感激。

4

1 回答 1

1

首先,您复制并粘贴了我们的项目。我假设您也复制了 UI。正如您在此处的许多问题中所看到的那样,并且正如https://code.google.com/p/zxing/wiki/LicenseQuestions中所讨论的那样,开源许可证不允许这样做。

其次,您已经复制并粘贴了AndroidManifest.xml声明。您Activity在我们的命名空间中声明一个并拦截我们Intent的 s。这会干扰我们的应用程序,这是不行的。删除它并创建您自己的清单。

但第三,您似乎正在尝试通过Intent. 它比这容易得多,并且与错误地复制和粘贴所有这些东西无关。见https://code.google.com/p/zxing/wiki/ScanningViaIntent

于 2013-04-11T09:09:29.787 回答