Estoy intentando instalar aplicaciones de Google Play. Puedo entender que al abrir la URL de la tienda Google Play, se abre Google Play y cuando presiono el botón Atrás, la actividad se reanuda.
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);
Cuando volví a la actividad, intenté llamar a esto onResume()
para verificar si la aplicación está instalada, pero recibo un error:
@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 ;
}
El error es el siguiente:
E / AndroidRuntime (796): java.lang.RuntimeException: No se puede iniciar la actividad ComponentInfo {com.example.appinstaller / com.example.appinstaller.MainActivity}: android.content.ActivityNotFoundException: No se encontró actividad para manejar Intent {act = android .intent.action.VIEW dat = market: // details? id = com.package.name flg = 0x40080000}
Supongo que la actividad lo es onPause()
. ¿Existe una mejor manera de implementarlo? Estoy intentando comprobar si la aplicación ha terminado de instalarse.