在Android上使用ZXing識別條碼 二次開發筆記 (2)

來源:互聯網
上載者:User

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)在介面上顯示解碼後的資料

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.