如何从手机上存储的音乐中获取姓名,艺术家,专辑名称?

时间:2010-08-06 17:48:40

标签: android listview

就像音乐应用程序一样,我想要访问歌曲的名称(不是文件的名称)或艺术家或专辑。例如,我想在列表视图中填写手机上所有歌曲的名称。

1 个答案:

答案 0 :(得分:2)

有两种方法,一种是从音乐文件本身读取元标记,另一种是使用MediaStore内容提供者。 MediaStore本质上是一个公共数据库,您可以在手机上查询所有与媒体相关的信息。

使用MediaStore非常简单,可以在文档here中找到。

以下是我的一个应用程序中的一个简单示例:

String[] proj = { MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.DATA,
MediaStore.Audio.Media.DISPLAY_NAME,
MediaStore.Audio.Artists.ARTIST };

tempCursor = managedQuery(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
                            proj, null, null, null);

tempCursor.moveToFirst(); //reset the cursor
int col_index=-1;
int numSongs=tempCursor.getCount();
int currentNum=0;
do{
  col_index = tempCursor.getColumnIndexOrThrow(MediaStore.Audio.Artists.ARTIST);
  artist = tempCursor.getString(col_index);
  //do something with artist name here
  //we can also move into different columns to fetch the other values
  }
  currentNum++;
}while(tempCursor.moveToNext());