如何在Android项目中集成独立条码扫描器?

时间:2015-07-03 09:36:16

标签: java android

这是我的代码....我将Zxing库集成到我的项目中,但它仍然要求使用第三方应用程序。帮助我plz。 mBtnDoScan.setOnClickListener(new OnClickListener(){

@Override
public void onClick(View v) {

    if (mMode.equals("ie")) {

        int sizeOfList = mInvDetLst.size();

        if (sizeOfList > 0) {
            // instantiate ZXing integration class
            IntentIntegrator scanIntegrator = new IntentIntegrator(
                    DeliveryDetail.this);
            // start scanning
            scanIntegrator.initiateScan();
        } else {
            Toast.makeText(DeliveryDetail.this,
                    "Items not available", Toast.LENGTH_SHORT)
                    .show();
        }

    }

}
});

0 个答案:

没有答案