my app is scanning barcode and it allows a user to continue scanning several times. Before the user start to scan it gives the user an options to choose a vendor and saves the name on the arraylist. Each and every time the user scan the barcode the app ask if they want to continue or not and when chooses "yes" it continue scanning saving on arraylist and when they choose no saves on the database. my problem is the app crushes when the user choose no and it does not save on the database.
here is the code i have tried that calls for the method i have added below
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == 0) {
if (resultCode == RESULT_OK) {
String contents = intent.getStringExtra("SCAN_RESULT");
String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
// Handle successful scan
final ArrayList<String> barcode = new ArrayList<String>();
barcode.add(contents);
AlertDialog.Builder kg= new AlertDialog.Builder(this);
kg.setMessage("Meter Scanned : " + barcode)
.setCancelable(false)
.setPositiveButton("yes", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int id){
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("com.google.zxing.client.android.SCAN.SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
//finish();
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id){
db.open();
long id1;
for (int i = 0; i < barcode.size(); i++) {
Log.d("test", "opened database");
id1 = db.insertRecord(vname.get(0),"2/2/2013",barcode.get(i), null);
Log.d("test", "Inserted into database");
}
db.close();
dialog.cancel();
}
});
AlertDialog alert = kg.create();
alert.setTitle("Please click yes to Continue");
alert.setIcon(R.drawable.kg);
alert.show();
Here is the code i have tried when the user click the button to scan with camera
BUTTON.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
final CharSequence[] Vendors = {"Helman", "Iron", "Sea land", "Thunder"};
alt_bld.setIcon(R.drawable.kg);
alt_bld.setTitle("Select a Vendor");
alt_bld.setItems(Vendors, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
Toast.makeText(getApplicationContext(),Vendors[item], Toast.LENGTH_SHORT).show();
vname.add((String) Vendors[item]);
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("com.google.zxing.client.android.SCAN.SCAN_MODE", "QR_CODE_MODE");
startActivityForResult(intent, 0);
}
});
AlertDialog alert = alt_bld.create();
alert.show();
Log.d("....",".....");
}});
will appreciate your help
