Estou tentando instalar aplicativos do Google Play. Posso entender que ao abrir o URL da Google Play Store, ele abre o Google Play e quando pressiono o botão Voltar, a atividade é retomada.
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 voltei para a atividade, tentei chamar isso onResume()
para verificar se o aplicativo está instalado, mas recebo um erro:
@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 ;
}
O erro é o seguinte:
E / AndroidRuntime (796): java.lang.RuntimeException: Não foi possível iniciar a atividade ComponentInfo {com.example.appinstaller / com.example.appinstaller.MainActivity}: android.content.ActivityNotFoundException: Nenhuma atividade encontrada para manipular o Intent {act = android .intent.action.VIEW dat = market: // details? id = com.package.name flg = 0x40080000}
Eu acho que a atividade é onPause()
. Existe uma maneira melhor de implementá-lo? Estou tentando verificar se a instalação do aplicativo foi concluída.