Discover

Topics

二维码扫描

二维码扫描 APK

二维码扫描 APK

1.0 FreeTu Yafeng ⇣ Download APK (115.01 KB)

Simply open the two-dimensional code scanning tool

What's 二维码扫描 APK?

二维码扫描 is a app for Android, It's developed by Tu Yafeng author.
First released on google play in 7 years ago and latest version released in 7 years ago.
This app has 193.8K download times on Google play and rated as 4.82 stars with 707 rated times.
This product is an app in Tools category. More infomartion of 二维码扫描 on google play
简单的二维码扫描工具

开放,允许其它程序调用。以下是调用须知。
开发者文档:
// 参数及结果
mark.qrcode.SCAN // action
mark.qrcode //package
mark.qrcode.CaptureActivity //class
getStringExtra("data") //result

实例:
// 启动扫码
Intent intent = new Intent("mark.qrcode.SCAN");
intent.setClassName("mark.qrcode", "mark.qrcode.CaptureActivity");
try { activity.startActivityForResult(intent, 0); } catch (Exception ignored) { }

// 获取扫码结果
@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent intent) {
if (requestCode == 0) {
if (intent != null && intent.hasExtra("data")) {
String result = intent.getStringExtra("data"); // 扫码结果
}
return;
}
}