适用于 Android 的歌曲选择器

发布于 2024-09-08 09:11:19 字数 106 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪心 2024-09-15 09:11:19

您可以发送“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

You can send an intent of type "ACTION_PICK" or "ACTION_GET_CONTENT". For example:

    Intent i = new Intent(Intent.ACTION_GET_CONTENT);
    i.setType("audio/*");
    Intent c = Intent.createChooser(i, "Select soundfile");
    startActivityForResult(c,1);

see here for more info:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文