I want to stream mp3 song using default media player.
I used the MIME Type “audio/*”.
Intent musicIntent = new Intent(android.content.Intent.ACTION_VIEW);
musicIntent.setType("audio/*");
startActivity(musicIntent);
so how to stream music via default music player?
Thanks in advance
You can simply pass the url to Media Player like this,