Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Android and am also a novice Java person. I'm working on a project that I feel Zxing to be fit for. I've got the app to load, prompt user to install Zxing, and scan/return barcode data. The problem I'm having is processing that data. I've done a little research, but I cant seem to come up with it. Here is the code from my main class:

public class MainActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void onClick (View view) {
    IntentIntegrator integrator = new IntentIntegrator(this);
    integrator.initiateScan();
}

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent);
    if (scanResult != null) {
        String barcode;
        String typ;

        barcode = scanResult.getContents();
        typ = scanResult.getFormatName();



            EditText etBarcode = (EditText) findViewById(R.id.etBarcode);
            EditText etTyp = (EditText) findViewById(R.id.etTyp);


            etBarcode.setText(barcode);
            etTyp.setText(typ);

        }
      }
   }

I've tried several different ways with the "webview" layout, with no results.

My final results, I would like to be able to search goole for +barcode and return the results on the same screen. Any help is appreciated.

share|improve this question
You haven't said what the problem is. What is "no results"? This code looks OK. – Sean Owen Jul 5 '12 at 18:02
Does getting scan result when using zxing? solve your problem? If not, what exactly do you want, and how is that different from what you have? – David Cary Aug 6 '12 at 17:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.