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 {
}
}