本文介绍了尝试使用Zxing QR码阅读器API会导致强制关闭的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我已经集成了Zxing API并使用以下代码:

I have integrated the Zxing API and use this code:

Intent data = new Intent("com.google.zxing.client.android.SCAN");

并通过以下代码获取结果:

And getting the result with this code:

String contents = data.getStringExtra("SCAN_RESULT");
String format = data.getStringExtra("SCAN_RESULT_FORMAT");

但是当我运行这段代码时,应用程序将要求强制关闭.

But when I run this code, the app will ask to force close.

推荐答案

将意图发送给startActivity(),您必须始终检查用户是否具有可以处理该意图的任何应用:

When sending an Intent to startActivity(), you must always check if the user has any apps that can handle the intent:

这篇关于尝试使用Zxing QR码阅读器API会导致强制关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 15:58