5

バーコードの読み取りには Google Play サービスの Visible API を使用しています。一部の(まったく機能しない)デバイスでは機能しない公式のCodeLabsの例のコードを試しました。Logcat メッセージは次のとおりです。

I/Vision﹕ Supported ABIS: [armeabi-v7a, armeabi]
D/Vision﹕ Library not found: /data/data/com.google.android.gms/files/com.google.android.gms.vision/barcode/libs/armeabi-v7a/libbarhopper.so
I/Vision﹕ Requesting barcode detector download.
D/AndroidRuntime﹕ Shutting down VM
E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: PID: 24921
java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
        at android.util.SparseArray.valueAt(SparseArray.java:273)
        at MainActivity$1.onClick(MainActivity.java:50)
        at android.view.View.performClick(View.java:4780)
        at android.view.View$PerformClick.run(View.java:19866)
        at android.os.Handler.handleCallback(Handler.java:739)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:135)
        at android.app.ActivityThread.main(ActivityThread.java:5254)
        at java.lang.reflect.Method.invoke(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:372)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)

問題は、デバイスがライブラリを見つけられないためです/data/data/com.google.android.gms/files/com.google.android.gms.vision/barcode/libs/armeabi-v7a/libbarhopper.so。その後、デバイスがバーコードを検出しないため (バーコードのリストが空です)、例外が発生しました。

コードは次のとおりです。

    BarcodeDetector detector = new BarcodeDetector.Builder(getApplicationContext()).build();
    Bitmap bitmap = ((BitmapDrawable) mBarcodeImageView.getDrawable()).getBitmap();
    Frame frame = new Frame.Builder().setBitmap(bitmap).build();
    SparseArray<Barcode> barcodes = detector.detect(frame);

    Barcode thisCode = barcodes.valueAt(0);
    TextView txtView = (TextView) findViewById(R.id.txtContent);
    txtView.setText(thisCode.rawValue);

Google Play サービスは、すべてのデバイスで更新されます。

誰でも私を助けることができますか?どうすれば修正できますか?

4

2 に答える 2

0

遅いことはわかっていますが、誰かがエラーを受け取り、この情報が役立つと思うかもしれません.

が原因でアプリがクラッシュしていArrayIndexOutOfBoundsExceptionます。理由は次のとおりです。

SparseArray<Barcode> barcodes = detector.detect(frame);検出されたすべてdatabarcodes配列に格納します。データが見つからない場合、空の配列が作成さ0れ、空の配列から index の値を取得しようとしています。

データを取得する前に、まず配列のサイズを確認する必要があります。コードを次のように変更します。

int totalCodes = barcodes.size();
if (totalCodes > 0) {
    Barcode thisCode = barcodes.valueAt(0);
    TextView txtView = (TextView) findViewById(R.id.txtContent);
    txtView.setText(thisCode.rawValue);
}

barcodesまたは、ループを使用して配列内のすべての要素を取得する必要があります。

于 2015-12-26T14:59:35.990 に答える
0

このdetectメソッドはSparseArray、値へのキーのみを含む a を返します。次のように結果を反復処理する必要があります。

for (int i = 0; i < barcodes.size(); i++) {
    Barcode barcode = barcodes.get(barcodes.keyAt(i));
    String value = barcode.displayValue
}
于 2017-01-04T14:52:43.327 に答える