Add 'if' check for file exists

This commit is contained in:
misaochan 2016-12-15 15:24:01 +13:00
parent b6997db681
commit b5ccc36a77

View file

@ -77,25 +77,28 @@ public class ExistingFileAsync extends AsyncTask<Void, Void, Boolean> {
super.onPostExecute(fileExists); super.onPostExecute(fileExists);
//TODO: Add Dialog here to tell user file exists, do you want to continue? Yes/No //TODO: Add Dialog here to tell user file exists, do you want to continue? Yes/No
AlertDialog.Builder builder = new AlertDialog.Builder(context); if (fileExists) {
builder.setMessage("This file already exists in Commons. Are you sure you want to proceed?") AlertDialog.Builder builder = new AlertDialog.Builder(context);
.setTitle("Warning");
builder.setPositiveButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//Go back to ContributionsActivity
Intent intent = new Intent(context, ContributionsActivity.class);
context.startActivity(intent);
}
}); builder.setMessage("This file already exists in Commons. Are you sure you want to proceed?")
builder.setNegativeButton("Yes", new DialogInterface.OnClickListener() { .setTitle("Warning");
public void onClick(DialogInterface dialog, int id) { builder.setPositiveButton("No", new DialogInterface.OnClickListener() {
//No need to do anything, user remains on upload screen public void onClick(DialogInterface dialog, int id) {
} //Go back to ContributionsActivity
}); Intent intent = new Intent(context, ContributionsActivity.class);
context.startActivity(intent);
}
AlertDialog dialog = builder.create(); });
dialog.show(); builder.setNegativeButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//No need to do anything, user remains on upload screen
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
} }
} }