Advertisement
Ahmed_Zouhir

Get all audio files [Sketchware]

Apr 5th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. //please subscribe to my channel
  2. //in case you want to make a video using my snippet please make a refer to me 😊️
  3. android.database.Cursor c=getContentResolver().query(android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, new String[]{android.provider.MediaStore.Audio.Media.DISPLAY_NAME}, null, null, null);
  4.  
  5.  
  6. while(c.moveToNext())
  7.  {
  8. String name=c.getString(c.getColumnIndex(android.provider.MediaStore.Audio.Media.DISPLAY_NAME));
  9. audio.add(name);
  10.  
  11.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement