How to hide gallery folder and show only the document using ACTION_GET_CONTENT in android? -


i want pick xls , xlsx files device. have used action_get_content, showing photos inside gallery.

intent intent = new intent(intent.action_get_content); intent.settype("*/*"); intent.addcategory(intent.category_openable); string[] mimetypes = {"text/plain","application/pdf", "application/txt","application/msword","application/vnd.openxmlformats-officedocument.wordprocessingml.document"}; intent.putextra(intent.extra_mime_types, mimetypes); 

i don`t want gallery files shown. how achieve this...? in advance

replace (intent.action_get_content); (intent.action_open_document);


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -