-2

How to select SD card location to save video

Hi I am facing a problem to choose the location in external SD card. Some app like ShareIt using the below concept (See Image). How to open this in Android.

Thanks in advance

Ignacio Alorre
  • 7,307
  • 8
  • 57
  • 94
Monu Gupta
  • 153
  • 1
  • 8

2 Answers2

0

Start an intent with Intent.ACTION_OPEN_DOCUMENT_TREE.

greenapps
  • 11,154
  • 2
  • 16
  • 19
0

have you added

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

above lines in your manifest

have a look through the link Android_Open_External_Storage

Community
  • 1
  • 1
Nazim ch
  • 834
  • 8
  • 20