I wanna run two system activities one after another in specific order.
now as we know, startActivity
is an asynchronous operation, so i cant keep on a specific order.
so i thought maybe I should try to do it with dialogBox
in the middle but also running a dialogBox
is an asynchronous.
now as i said the activities which i try to run are system activities, so i cant even start them with startActivityForResult
(or mybe i can, but i cant think how it will help me).
Any tricks how could i manage with this issue?
Some code:
first activity:
Intent intent = new Intent();
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Settings.ACTION_APPLICATION_SETTINGS);
startActivity(intent);
second activity:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(tmpPackageFile
.getAbsoluteFile()),
"application/vnd.android.package-archive");
startActivity(intent);
as you can see, i dont have any access to those activites, i can just run thire intents from an outside class/activity/service.