适用于 Android 的歌曲选择器
Android 上是否有可以通过编程方式调用的歌曲选择器?
我正在寻找类似于 iPhone 的 MPMediaPickerController 的东西,它显示用户可以选择歌曲的视图。
Is there a song picker for Android that can be invoked programatically?
I'm looking for something similar to iPhone's MPMediaPickerController, which shows a view from where the user can select songs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以发送“ACTION_PICK”或“ACTION_GET_CONTENT”类型的意图。例如:
请参阅此处了解更多信息:
http://developer.android。 com/reference/android/content/Intent.html#ACTION_GET_CONTENT
You can send an intent of type "ACTION_PICK" or "ACTION_GET_CONTENT". For example:
see here for more info:
http://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT