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

I´m working with ZXing library in Android, I read a lot of posts and tried to follow lots os tutorials to create my personal core.jar and not to use the barcode scanner app. Finally I did it but now I want to use the string decoded from the QR code. Now I show it in an EditText but what I want to do is a query to a database and I don´t know if the best way is to have another intent in that if and use the string in the new method. I add the code and I´m open for suggestions.

Thank you very much in advance.

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 0) {
        if (resultCode == 1) {
            // Handle successful scan
            String capturedQrValue = intent.getStringExtra("RESULT");
                editText2.setText(capturedQrValue);

} else if (resultCode == RESULT_CANCELED) { // Handle cancel } } else { } }
share|improve this question

closed as not a real question by Sean Owen, Eitan T, Tamás, VMAtm, mah Oct 31 '12 at 11:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.