先读出一MP3文件,如何知道里面歌手名和歌曲名?就像win那样知道点击mp3
就知道参与创作的艺术家和专辑名。

解决方案 »

  1.   

    你想要的效果可以看看这篇博客 http://blog.csdn.net/w8320273/article/details/8032155
      

  2.   

    String[] projection = new String[] {"artist"};
          Cursor cur = context.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, projection, null, null, null);
    String[] projection = new String[] {"_display_name"};
          Cursor cur = context.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, projection, null, null, null);用它试试
      

  3.   

    它程序源代码,http://pan.baidu.com/share/link?shareid=154811&uk=285951160