Android的歌曲选择器

前端之家收集整理的这篇文章主要介绍了Android的歌曲选择器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Android上有一个可以编程的歌曲选择器吗?

我正在寻找类似于iPhone的MPMediaPickerController,它显示用户可以从哪里选择歌曲的视图.

解决方法

您可以发送“ACTION_PICK”或“ACTION_GET_CONTENT”类型的意图.例如:
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
    i.setType("audio/*");
    Intent c = Intent.createChooser(i,"Select soundfile");
    startActivityForResult(c,1);

看到这里了解更多信息:

http://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT

原文链接:https://www.f2er.com/android/309991.html

猜你在找的Android相关文章