This is the previous post.
About mp3 player
And the picture below is my A.mp3 path I find in my phone.
`
mediaPlayer.setDataSource("/storage/sdcard1/A.mp3")
File file =new File(Environment.getExternalStorageDirectory(),"A.mp3");
mediaPlayer.setDataSource(file.getPath());
There are two paths above..According the picture,it should be the first one,but it does not work.
I push A.mp3 into the internal storage,and play is ok.
mediaPlayer.setDataSource("/system/A.mp3");