1、在CaptureActivityHandler類裡方法:
public void handleMessage(Message message)
接收對圖片解碼後的結果,如果介面成功則進入下面分支
case R.id.decode_succeeded:
Log.d(TAG, "Got decode succeeded message");
state = State.SUCCESS;
Bundle bundle = message.getData();
Bitmap barcode = bundle == null ? null :
(Bitmap) bundle.getParcelable(DecodeThread.BARCODE_BITMAP);
activity.handleDecode((Result) message.obj, barcode);
2、調用CaptureActivity類handleDecode-> private void handleDecodeInternally(Result rawResult, Bitmap barcode)
//格式
TextView formatTextView = (TextView) findViewById(R.id.format_text_view);
formatTextView.setText(rawResult.getBarcodeFormat().toString());
//類型
ResultHandler resultHandler = ResultHandlerFactory.makeResultHandler(this, rawResult);
TextView typeTextView = (TextView) findViewById(R.id.type_text_view);
typeTextView.setText(resultHandler.getType().toString());
//時間 這個就無所謂了
DateFormat formatter = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
String formattedTime = formatter.format(new Date(rawResult.getTimestamp()));
TextView timeTextView = (TextView) findViewById(R.id.time_text_view);
timeTextView.setText(formattedTime);
那條碼的值如何獲得呢? rawResult.getText();即可獲得。
進行結果解碼結果解析,解析結果例如:
圖片+ 條碼的值:978771151622121
格式 EAN_13
類型 ISBN
時間 2011
其中條碼值和類型,格式這三個資料就是使用zxing圖片解碼最後得到的資料。
3、總結
zxing條碼掃描的工作流程:
1)啟動相機,在間隔很短的時間內連續拍照
2)調用圖片解碼把拍到在圖片進行解碼
3)當解碼出結果時,解碼器返回成功結果和資料
4)在介面上顯示解碼後的資料