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.