Sto provando a installare app da Google Play. Posso capire che aprendo l'URL di Google Play Store, si apre Google Play e quando premo il pulsante Indietro, l'attività riprende.
Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(appURL));
marketIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(marketIntent);
Quando sono tornato all'attività, ho provato a chiamarlo onResume()
per verificare se l'app è installata, ma ricevo un errore:
@Override
protected void onResume() {
super.onResume();
boolean installed = false;
while (!installed) {
installed = appInstalledOrNot(APPPACKAGE);
if (installed) {
Toast.makeText(this, "App installed", Toast.LENGTH_SHORT).show();
}
}
}
private boolean appInstalledOrNot(String uri) {
PackageManager pm = getPackageManager();
boolean app_installed = false;
try {
pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
app_installed = true;
}
catch (PackageManager.NameNotFoundException e) {
app_installed = false;
}
return app_installed ;
}
L'errore è il seguente:
E / AndroidRuntime (796): java.lang.RuntimeException: impossibile avviare l'attività ComponentInfo {com.example.appinstaller / com.example.appinstaller.MainActivity}: android.content.ActivityNotFoundException: nessuna attività trovata per gestire Intent {act = android .intent.action.VIEW dat = market: // details? id = com.package.name flg = 0x40080000}
Immagino che l'attività sia onPause()
. C'è un modo migliore per implementarlo? Sto cercando di controllare se l'installazione dell'app è terminata.