어플을 삭제한 후, 
어플에 대한 삭제가 완료되었다는 페이지를 보여주려고 하는데요 

두 페이지가 동시에 뜨고 

어플의 삭제페이지가 뒤로 내려가고 

제일 상위에 어플 삭제가 완료되었다는 페이지가 떠버립니다. 



완료되었다는 페이지를 닫고나면

뒤에 어플 삭제 페이지가 나오는데요 


어플 삭제 완료후에 뒤에 코드가 수행되도록 할수는 없나요??





            Uri uninstallUri = Uri.fromParts("package", "com.Apptest", null);
            Intent returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);
            startActivity(returnIt);
           
            Intent intent = new Intent(uninstall_package.this, delete_complet.class);
            startActivity(intent);
            finish();