Anyone who knows a good way to generate/create a barcode from a String in Android?
+4
A:
You can use the Google Charts API, a simple call to the following url with your text in chl
parameter returns an image with the QRcode.
http://chart.apis.google.com/chart?cht=qr&chs=150x150&chl=give+me+a+beer
kosokund
2010-03-03 10:15:33
+1
A:
If you want to encode on the device instead of calling to a URL, indeed you want ZXing. Look at what it does for the Android client Barcode Scanner in EncodeActivity.
Sean Owen
2010-03-03 15:49:54