I tried to open pdf using pdf reader. but im getting no application found.
how can i find is there any application available before showing the message.
I want to open the application popup only if any application exist to open the pdf file how can i add it?
Intent target = new Intent();
target.setType("application/pdf");
target.setData(Uri.parse(attachment));
target.setAction(Intent.ACTION_GET_CONTENT);
Intent intent = Intent.createChooser(target, "Open File");