I have app in which user can search image,audio,video,doc file from sdcard and choose 1 file for upload it on server. Using Below code I can open the gallery and select image,audio,video But I have not idea that how to search doc from gallery.
Here is my code.
Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
//intent.setType("video/*");
//intent.setType("audio/*");
//intent.setType("image/*");
//**What I have to do for view document[.pdf/text/doc] file**
startActivityForResult(Intent.createChooser(intent, "Complete action using"), REQUEST_CODE);
Does anyone have any idea how this can be achieved? Any help is greatly appreciated.
try this library aFileChooser its working fine
pls see this link
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With