0

I have tried to use the following code to get pdf file from intent but it's showing me all kind of files.I want file chooser menu to show only .pdf files.

    intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType("application/pdf");
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
Bhavik J
  • 1
  • 1

1 Answers1

0

You may try the following code based from this post: picking PDF files using Intent in android.

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);

Hope this helps!

abielita
  • 13,147
  • 2
  • 17
  • 59