android - How to exclude specific directory from video picker? -


i wish select video user's gallery app, i'd have 1 of directories hidden video picker.

  1. directory "abc/" visible in user's default gallery
  2. in app, user pick video gallery
  3. when he's picking video using gallery, directory "abc/" won't visible.

what shows directories available in user gallery:

intent = new intent(intent.action_pick, android.provider.mediastore.video.media.external_content_uri); i.settype("video/*"); startactivityforresult(i, maincontroller.select_video_request); 

is there option add intent prevent "abc" directory being visible @ picking time?

is there option add intent prevent "abc" directory being visible @ picking time?

not using action_pick. delegating work 1 of many possible apps. there no documented extras intent "please hide directory" or "please hide videos names contain letter 'q'" or that. and, if there such extra, apps implementing action_pick free ignore it.

there existing libraries choosing files; 1 might meet needs.


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -