I'm currently using ZXing in my Android app to generate a one-dimension barcode (EAN_13 and CODE_39). The result is looking good but I'd like to display numbers below the barcode, like that: enter image description here

Is it doable?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You could simply just add a TextView aligned below|center of the xzing barcode, and put the numbers in there.

If you really care about the specific look (with the numbers aligned slightly inside the barcode) - you could set a white background to the TextView, and use a negative alignment to move it up slightly into the barcode.

Don't know answer if xzing supports what you want. Good Luck.

link|improve this answer
You are correct that you have to write in the numbers yourself. – Sean Owen Feb 6 at 21:10
Ok, I just wanted to know if there was a hidden parameter in ZXing. I'll use a textview then. Thanks guys! – Romain Piel Feb 7 at 8:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.