我正在使用Zxing Barcode scanner app
使用
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
工作正常。我可以在onActivityResult
得到结果。没问题。我不希望显示QRCode。我的意思是我不想让最终用户知道qr code string
。但是在原始barcode scanner app
中可用的历史记录中,它显示了已扫描的QR列表。那么,如何让我的应用中的QRString
在History
答案 0 :(得分:2)
package com.google.zxing.client.android.Scan;
的“SAVE_HISTORY”
/**
* Setting this to false will not save scanned codes in the history.
*/
public static final String SAVE_HISTORY = "SAVE_HISTORY";
然后就像,
intent.putExtra("SAVE_HISTORY", false);
试试这个,让我知道发生了什么......