我正在尝试将媒体播放器集成到我的应用中。 它必须选择多首歌曲。 然后在队列中播放它们。一个接一个。 现在我只能选一首歌。
problem is how can i pick multiple songs .
这是我正在为选择单首歌而做的事。
Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);
i.setType(MediaStore.Audio.Playlists.CONTENT_TYPE);
startActivityForResult(i, 1);
任何建议..