安卓上的條形碼掃描?


此示例演示瞭如何在安卓平臺進行條形碼掃描。

步驟 1 − 在 Android Studio 中建立一個新專案,進入 File ⇒ New Project,然後填寫所有必需的資訊以建立新專案。

步驟 2 − 向 res/layout/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:id="@+id/relativeLayout"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:padding="4dp"
   tools:context=".MainActivity">
<TextView
   android:layout_below="@id/button"
   android:layout_centerInParent="true"
   android:layout_marginBottom="10dp"
   android:text=" code reader"
   android:textSize="16sp"
   android:textStyle="bold"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:id="@+id/txtContent"/>
<Button
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="Process"
   android:layout_marginTop="50dp"
   android:layout_centerHorizontal="true"
   android:id="@+id/button" />
</RelativeLayout>

步驟 3 − 在 Gradle 中新增以下依賴

implementation 'com.google.zxing:core:3.2.1'
implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar'

步驟 4 − 向 src/MainActivity.java 中新增以下程式碼

import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.google.zxing.integration.android.IntentIntegrator;
import com.google.zxing.integration.android.IntentResult;
public class MainActivity extends AppCompatActivity {
   Button btnBarcode;
   TextView textView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      btnBarcode = findViewById(R.id.button);
      textView = findViewById(R.id.txtContent);
      btnBarcode.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            IntentIntegrator intentIntegrator = new IntentIntegrator(MainActivity.this);
            intentIntegrator.setDesiredBarcodeFormats(intentIntegrator.ALL_CODE_TYPES);
            intentIntegrator.setBeepEnabled(false);
            intentIntegrator.setCameraId(0);
            intentIntegrator.setPrompt("SCAN");
            intentIntegrator.setBarcodeImageEnabled(false);
            intentIntegrator.initiateScan();
         }
      });
   }
   @Override
   protected void onActivityResult(int requestCode, int resultCode, Intent data) {
      IntentResult Result = IntentIntegrator.parseActivityResult(requestCode, resultCode, data);
      if (Result != null) {
         if (Result.getContents() == null) {
            Toast.makeText(this, "cancelled", Toast.LENGTH_SHORT).show();
         } else {
            Log.d("MainActivity", "Scanned");
            Toast.makeText(this, "Scanned -> " + Result.getContents(), Toast.LENGTH_SHORT).show();
textView.setText(String.format("Scanned Result: %s", Result));
         }
      } else {
         super.onActivityResult(requestCode, resultCode, data);
      }
   }
}

步驟 5 − 向 androidManifest.xml 中新增以下程式碼

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      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>
<uses-feature android:name="android.hardware.camera.autoFocus" />
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>

讓我們嘗試執行您的應用程式。我假設您已將實際的 Android 移動裝置連線到了您的計算機。要從安卓工作室執行該應用程式,請開啟您的一個專案活動檔案,然後單擊工具欄中的執行 Play 圖示圖示。選擇您的移動裝置作為選項,然後檢視將顯示預設介面的移動裝置 −

使用真機進行檢查以獲得更好的結果。

更新日期:2020 年 7 月 7 日

924 次瀏覽

開啟您的 職業生涯

完成課程獲取認證

開始吧
廣告
© . All rights reserved.