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.
- directory "abc/" visible in user's default gallery
- in app, user pick video gallery
- 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
Post a Comment