How can I read qr code inside GDK app?

2019-05-26 02:34发布

I want to read qr code from GDK app to get authorization token.

Is there any build in methods to read QR codes in GDK?

3条回答
冷血范
2楼-- · 2019-05-26 02:52

This worked for me.

Intent objIntent = new Intent("com.google.zxing.client.android.SCAN");
objIntent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(objIntent, 0);
查看更多
够拽才男人
3楼-- · 2019-05-26 02:52

You can read QR using the library located at https://code.google.com/p/barcodefraglibv2/wiki/HowTo Have tested it to work on Glass without any problem.

查看更多
干净又极端
4楼-- · 2019-05-26 03:09

QR code could be obtained from bitmap using this ZXing library

To get the bitmap Glass camera intent could be used.

查看更多
登录 后发表回答