I have been using ZXING to encode QR barcodes successfully. However, at least with the current version, it appears to have limited support for encoding other symbologies (ex: PDF-417).
I use the following code snippet:
// Encode the bitmap and display it on the screen
try {
// This will produce a 150x150 QR Barcode and display it on the screen.
Bitmap bm = encodeAsBitmap(barcodeContentString, BarcodeFormat.QR_CODE, 150, 150);
if(bm != null) {
barcodeImage.setImageBitmap(bm);
}
}
catch (WriterException e) { ... }
In this example, the "barcodeContentString" is the data that is being encoded. The "barcodeImage" is a standard ImageView.
I don't show it here, but I turn the screen on for the entire length of time that the barcode is displayed. As such, I am able to successfully scan the barcode with a QR compatible barcode scanner.