NeoTechni Well-Known Member Licensed User Longtime User Sep 20, 2014 #1 http://stackoverflow.com/questions/4586684/how-to-get-a-list-of-installed-media-players Intent intent =newIntent(Intent.ACTION_VIEW); Uri uri =Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"1"); intent.setData(uri);List<ResolveInfo> playerList; playerList = packageManager.queryIntentActivities(intent,0); How would I convert that to B4A?
http://stackoverflow.com/questions/4586684/how-to-get-a-list-of-installed-media-players Intent intent =newIntent(Intent.ACTION_VIEW); Uri uri =Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,"1"); intent.setData(uri);List<ResolveInfo> playerList; playerList = packageManager.queryIntentActivities(intent,0); How would I convert that to B4A?
NeoTechni Well-Known Member Licensed User Longtime User Sep 20, 2014 #2 Found something worth checking: http://www.b4x.com/android/forum/th...ps-that-support-a-particular-file-type.11326/ Upvote 0
Found something worth checking: http://www.b4x.com/android/forum/th...ps-that-support-a-particular-file-type.11326/
NeoTechni Well-Known Member Licensed User Longtime User Sep 20, 2014 #3 How do I get the value of: MediaStore.Audio.Media INTERNAL_CONTENT_URI Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Sep 21, 2014 #4 It is: content://media/internal/audio/media Upvote 0