Q&A
Ask and answer questions to make information more available to wider audiences.
Emma Jackson @jacksonemma7   01, Jul 2019 12:00 AM
Android browse file programmatically?
How can I choose a PDF file in android application programmatically as an image.
I need to read QR code from the file to login automatically into the system.
answers 1
 
Answer 1
Hannah Jephson @jephsonhannah   22, Jul 2019 03:30 PM
Try this:

intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
startActivityForResult(intent, 7);