I have a new question this time with ZXing. O.K I have read all that I can find on this site about using ZXing with an app, but I am confused. I have written my DB app and I want to create a barcode with data, i.e Group name, Hours and cost, nothing complex. I can create the barcode online, not a prob. The problem is how to I extract the Group name, hours and cost from the "contents" returned by the SCAN_RESULTS in ZXing.
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.scanButton:
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("SCAN_MODE", "PRODUCT_MODE");
startActivityForResult(intent, REQUEST_BARCODE);
break;
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == REQUEST_BARCODE) {
if (resultCode == RESULT_OK) {
//barcode is variable where the string from SCAN_RESULT is stored
String barcode = intent.getStringExtra("SCAN_RESULT");
// etName.setText(barcode);
Many thanks
