Feedback on export/import

pull/160/head
M66B 5 years ago
parent 381e0b2052
commit 3687a632f6

@ -526,6 +526,11 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
args.putString("password", password);
new SimpleTask<Void>() {
@Override
protected void onPreExecute(Bundle args) {
ToastEx.makeText(ActivitySetup.this, R.string.title_executing, Toast.LENGTH_LONG).show();
}
@Override
protected Void onExecute(Context context, Bundle args) throws Throwable {
Uri uri = args.getParcelable("uri");
@ -686,6 +691,11 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
args.putString("password", password);
new SimpleTask<Void>() {
@Override
protected void onPreExecute(Bundle args) {
ToastEx.makeText(ActivitySetup.this, R.string.title_executing, Toast.LENGTH_LONG).show();
}
@Override
protected Void onExecute(Context context, Bundle args) throws Throwable {
Uri uri = args.getParcelable("uri");

Loading…
Cancel
Save