It is very easy to name the intention for your own Android Media Player to play the MP3 file. eg.
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse("file:///sdcard/bigTune.mp3");
intent.setDataAndType(data,"audio/mp3");
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
e.printStackTrace();
}
The problem is that when the player starts playing the file, and the CD with the album cover is empty, and the player shows information about the song NO.
If this were done through a file manager such as Astro File Manager, I would see the song Information (Title, Artist Album Art)
Is there anything else I need to know to add to Intent or something else that I need to do so that Media Player can show mp3 Info ???
thanks in advance
source
share