未找到 Android Google Play Service Vision 条码扫描器库
Posted
技术标签:
【中文标题】未找到 Android Google Play Service Vision 条码扫描器库【英文标题】:Android Google Play Service Vision Barcode scanner Library not found 【发布时间】:2015-11-11 18:10:16 【问题描述】:我使用 Google play services Visible API 来读取条形码。我尝试了来自official CodeLabs example 的代码,该代码在某些(根本不是)设备上不起作用。这是 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 服务已在所有设备上更新。
谁能帮助我?我该如何解决?
【问题讨论】:
看起来您的应用由于ArrayIndexOutOfBoundsException
上的MainActivity.java:50
而崩溃,这根本与Google Play 服务无关。那条线是什么?
@ianhanniballake,我刚刚在下面添加了谷歌示例代码。我提到条形码列表是空的,这是例外的原因。但是条形码列表是空的,因为detector
无法识别条形码,这是真正的问题。发生这种情况是因为设备找不到我上面提到的库。
在这里查看我的答案:***.com/questions/32099530/…
@JaredBurrows 谢谢!我解决了这个问题。实际上我需要清除缓存,释放一些空间并重新安装应用程序。
【参考方案1】:
我知道已经晚了,但有人可能会收到错误消息,但仍然觉得此信息很有用。
由于ArrayIndexOutOfBoundsException
,您的应用程序正在崩溃。原因如下:
SparseArray<Barcode> barcodes = detector.detect(frame);
将所有检测到的data
存储在barcodes
数组中。当没有找到数据时,它会创建一个空白数组,并且您尝试从空白数组中获取索引 0
处的值。
在尝试检索数据之前,您应该先检查数组的大小。将您的代码更改为以下内容:
int totalCodes = barcodes.size();
if (totalCodes > 0)
Barcode thisCode = barcodes.valueAt(0);
TextView txtView = (TextView) findViewById(R.id.txtContent);
txtView.setText(thisCode.rawValue);
或者你应该使用循环来获取barcodes
数组中的所有元素。
【讨论】:
【参考方案2】:detect
方法返回一个 SparseArray
,其中只包含值的键,您应该像这样遍历结果:
for (int i = 0; i < barcodes.size(); i++)
Barcode barcode = barcodes.get(barcodes.keyAt(i));
String value = barcode.displayValue
【讨论】:
以上是关于未找到 Android Google Play Service Vision 条码扫描器库的主要内容,如果未能解决你的问题,请参考以下文章
Logcat:未找到 Google Play 服务资源。检查您的项目配置以确保包含资源
Android 虚拟机:双重错误:“未安装 Google Play 游戏”
如何测试使用 google play 游戏服务的未发布的 android 游戏?
我收到“错误:未找到与给定名称匹配的资源(值为@integer/google_play_services_version)”