这是我的代码....我将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();
}
}
}
});