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?
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?