0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CompoundBarcodeViewでコード読み取り

Last updated at Posted at 2025-03-29

CompoundBarcodeViewででバーコードやQRコードを読み取る方法をメモします。

<com.journeyapps.barcodescanner.CompoundBarcodeView
    android:id="@+id/barcodeView"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)

    val cameraSettings = CameraSettings().apply {
    requestedCameraId = 0 // 0 = 背面カメラ, 1 = フロントカメラ
    isAutoFocusEnabled = true // オートフォーカスを有効
    isScanInverted = true // 明るいバーコードをスキャンしやすくする(例:白地に黒バーコード)
    }

    barcodeView.decodeSingle { result ->
        runOnUiThread {
            Toast.makeText(this, result.text, Toast.LENGTH_SHORT).show()
        }
    }
}

override fun onResume() {
    super.onResume()
    // 読取開始
    barcodeView.resume()
}

override fun onPause() {
    super.onPause()
    // 読取停止
    barcodeView.pause()
}

最初にXMLでCompoundBarcodeViewを使用します。match_parentにすると画面いっぱいにカメラビューが広がります。
CameraSettings() を使うと細かくカスタマイズでできます。他にも暗い場所でフラッシュ自動ONか、露出補正を有効にするか、連続フォーカスを有効にするかなどあります。
読取後の処理はシンプルに書きたいならdecodeSingle { result -> ... }にて行います。
エラー処理など複雑な処理を行いたい場合は、下記のオブジェクト式decodeSingle(object : BarcodeCallback { ... })を使用します。

barcodeView.decodeSingle(object : BarcodeCallback {
    override fun barcodeResult(barcodeResult: BarcodeResult) {
        runOnUiThread {
            if (barcodeResult.text.isNullOrEmpty()) {
                Toast.makeText(this@MainActivity, "QRコードが読み取れませんでした", Toast.LENGTH_SHORT).show()
            } else {
                Toast.makeText(this@MainActivity, "barcodeResult.text", Toast.LENGTH_SHORT).show()
            }
        }
    }

    override fun possibleResultPoints(resultPoints: MutableList<ResultPoint>?) {
        // 読み取りの補助情報が取れる
    }
})

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?