my app is downloading a pdf-file to my download path and then i want to open my PDF within a new Intent
but just my reader is open no pdf file
this is my code to open the reader
Uri oUri = Uri.fromFile(proofFile);
Intent iIntent = new Intent(Intent.ACTION_VIEW);
iIntent.setDataAndType(oUri, "application/pdf");
iIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(iIntent);