Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我使用 XZing 项目库开发了一个 QR 码阅读器应用程序。它读取二维码并获取内容。但我对阅读内容采取了行动。我用设备读取 QR 码并获得网页 URL,现在我在 Android 中打开该网页 URL 网页,如果我读取电话号码,它会在 Android 中调用该号码。
请帮助我,在此先感谢。
你试过什么?
你会得到这样的回复
if (resultCode == RESULT_OK) { String contents = data.getStringExtra("SCAN_RESULT"); //this is the result }
然后,您将内容作为字符串。
如果它是一个 URL,你可以这样做在浏览器中打开它
Intent in = new Intent(Intent.ACTION_VIEW); in.setData(Uri.parse(url)); startActivity(in);