gpt4 book ai didi

android - 如何让用户在 Android 上查看和播放他们已经可以访问的歌曲(例如,通过 Google Play)?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:12:58 27 4
gpt4 key购买 nike

我遇到了将音乐集成到我的 Android 应用程序中的障碍。目标只是让用户通过 Google Play 音乐(或任何其他播放器,如 Winamp、Poweramp、doubleTwist 等)查看和播放他们已经可以访问的歌曲。

到目前为止,我已经尝试了几种方法,但每种方法都有问题。

方法 #1:使用 ContentResolver 查询从 Google Play 音乐获取播放列表和歌曲,然后使用 MediaPlayer 播放

首先,将光标放在播放列表上:

String[] proj = { MediaStore.Audio.Playlists.NAME,
MediaStore.Audio.Playlists._ID };
Uri playlistUri = Uri.parse("content://com.google.android.music.MusicContent/playlists");
Cursor playlistCursor = getContentResolver().query(playlistUri, proj, null, null, null);

然后迭代获取每个播放列表中的歌曲,这样读取:

String[] proj2 = { MediaStore.Audio.Playlists.Members.TITLE,
MediaStore.Audio.Playlists.Members._ID };
String playListRef = "content://com.google.android.music.MusicContent/playlists/" + playListId + "/members";
Uri songUri = Uri.parse(playListRef);
Cursor songCursor = getContentResolver().query(songUri, proj2, null, null, null);

这可以获取播放列表和歌曲,但实际上您无法播放它们(即使您告诉 Google Play 音乐“保留在设备上”)。具体来说,以下代码不会播放上面找到的给定歌曲:

mediaPlayer = new MediaPlayer();
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
try {
mediaPlayer.setDataSource(dataPath);
mediaPlayer.prepare();
mediaPlayer.start();
} catch (Exception e) {}

事实上,我已经扫描了设备,但无法在任何地方找到这些文件(即使我已经通过完全禁用网络确认它们是本地的——在 Galaxy Nexus 和 Galaxy S3 上)。

方法 #2:使用 Intent 调用 Google Play 音乐或其他播放器

根据 this post ,您可以简单地使用 Intents 调用播放器,如下所示:

Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(YOUR_SONG_URI);
intent.setDataAndType(Uri.fromFile(file), "audio/*");
startActivity(intent);

但我认为这种方法不允许任何类型的控制——例如,传递要播放的特定歌曲,或者在歌曲播放完毕时收到通知。此外,@CommonWares 指出音乐应用程序及其 Intent 不是 Android SDK 公共(public) API 的一部分,并且可能会在没有警告的情况下发生变化。

由于与 iTunes 的紧密集成,我尝试实现的基本功能存在于 iOS 中。我认为 Google 会希望实现相同类型的集成,因为这可能意味着在 Play 商店中销售更多音乐。

总结:是否可以让用户查看和播放他们已经可以在 Android 上访问的歌曲?使用 Google Play 音乐或任何其他应用程序执行此操作的最佳方式是什么?谢谢。

最佳答案

方法 #1 有点奏效(在设备上使用本地音乐进行测试),感谢 OP 的指导。

注意事项:

  • 我们在这里使用未记录的内部 API - 它不是可靠。
  • 我无法在 Google 中访问在线/购买的音乐播放音乐,因此答案仅指本地存储的音乐。

下面的代码将遍历播放列表中的所有歌曲并播放最后一首。

注意 “SourceId” 列 - 这是您根据 documentation 使用的音频 ID .我通过遍历游标返回的所有列找到了它。那里还有几个更有趣的列,例如“hasLocal”、“hasRemote”,它们可能(或不)指的是音乐的存储位置。

String[] proj2 = { "SourceId", MediaStore.Audio.Playlists.Members.TITLE, MediaStore.Audio.Playlists.Members._ID };
String playListRef = "content://com.google.android.music.MusicContent/playlists/" + playListId + "/members";
Uri songUri = Uri.parse(playListRef);
Cursor songCursor = getContentResolver().query(songUri, proj2, null, null, null);

long audioId = -1;
while (songCursor.moveToNext()) {
audioId = songCursor.getLong(songCursor.getColumnIndex("SourceId"));
String title = songCursor.getString(songCursor.getColumnIndex(MediaStore.Audio.Playlists.Members.TITLE));
Log.v("", "audioId: " + audioId + ", title: " + title);
}
songCursor.close();

MediaPlayer mpObject = new MediaPlayer();
try {
if (audioId > 0) {
Uri contentUri = ContentUris.withAppendedId(android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, Long.valueOf(audioId));
mpObject.setAudioStreamType(AudioManager.STREAM_MUSIC);
mpObject.setDataSource(this, contentUri);
mpObject.prepare();
mpObject.start();

}
} catch (Exception e) {
e.printStackTrace();
}

关于android - 如何让用户在 Android 上查看和播放他们已经可以访问的歌曲(例如,通过 Google Play)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13923278/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com