android - How to select any file from recent and upload it on server? -


i wanna upload files on server android app. user can pick file recent image, doc or pdf in android app , upload on server.

so please tell me how open recent activity , select file , how upload on server.

please me important me.

you can use */* open files in android.

intent intent = new intent();     intent.settype("*/*"); intent.addcategory(intent.category_openable); intent.setaction(intent.action_get_content); startactivityforresult(intent.createchooser(intent, getstring(r.string.perform_action_with)), attachmentchoice); 

note:where attachmentchoice constant.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -