Home > Blockchain >  Select multiple directories on start using ACTION_OPEN_DOCUMENT_TREE on Android 11
Select multiple directories on start using ACTION_OPEN_DOCUMENT_TREE on Android 11

Time:02-21

I want my app to allow the user to select multiple directories on app start using ACTION_OPEN_DOCUMENT_TREE instead of asking him for a single directory and spamming multiple requests for others. Is it possible to make a one time request for multiple paths on app start?

CodePudding user response:

No, sorry, ACTION_OPEN_DOCUMENT_TREE supports selecting only one document tree, not several. There is no Intent action to request multiple trees at one time.

  • Related