Get all Audio files [Sketchware/Easiest way]
Code used
//please subscribe to my channel
//in case you want to make a video using my snippet please make a refer to me 😊️
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);
while(c.moveToNext())
{
String name=c.getString(c.getColumnIndex(android.provider.MediaStore.Audio.Media.DISPLAY_NAME));
audio.add(name);
}
Video Tutorial
Hello pls can you make a video on how to add Google map to your coronavirus tracker app thanks
ReplyDeleteI didn't play around with Google map api, but I will try
Delete