mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Feedback on export/import
This commit is contained in:
parent
381e0b2052
commit
3687a632f6
1 changed files with 10 additions and 0 deletions
|
@ -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…
Reference in a new issue