I want to show list of available player for audio playing but in my code is doesn’t show any player it play only sound not showing player option,below is my code....
switch (arg0.getId())
{
case R.id.rel_set_scroll_play:
MediaPlayer mplayer = new MediaPlayer();
try {
mplayer.setDataSource(DEFAULT_STORAGE_LOCATION+"/"+contact);
mplayer.prepare();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
mplayer.start();
Intent intenti = new Intent(android.content.Intent.ACTION_VIEW);
Uri datanew = Uri.parse(DEFAULT_STORAGE_LOCATION+"/"+contact);
intenti.setDataAndType(datanew,"audio/*");
try {
startActivity(intenti);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
}
break;
}
try this code
if you need to show an audio player skin in your app, you have to design an audio player and connect your code with that. Android just give the interface for playing audio only
please refer the following link
http://code.tutsplus.com/tutorials/create-a-music-player-on-android-project-setup--mobile-22764