• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

弄一个用于播放 MP3 文件的意图过滤器?

用户头像
it1352
帮助1

问题说明

我在 Android 中创建了一个音乐播放器应用程序.现在,在手机的文件管理器中选择音乐文件时,我希望我的应用程序显示为使用完成操作"弹出窗口中的选项之一.我的想法是使用意图过滤器来做到这一点,但我不知道我需要向它提供什么操作、类别或数据.如何为此创建意图过滤器?

I have created a music player application in Android. Now, when selecting a music file in the phone's file manager, I want my application to appear as one of the options in the "Complete action using" popup. My idea is to do this using intent filter but I have no idea what action, category, or data I need to supply to it. How do I create an intent filter for this?

我还在这里看到了一个相关问题:如何制作用于流式传输 MP3 文件的意图过滤器? 但我的不是流式传输,我只是播放文件中的音乐.

I've also seen a related question here: How do I make an intent-filter for streaming an MP3 file? but mine is not streaming, i am just playing music from file.

提前致谢.

正确答案

#1

希望这个Intent Filter可以帮到你

Hope this Intent Filter can help you

<intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:scheme="content"/>
        <data android:scheme="file"/>
        <data android:mimeType="audio/*"/>
    </intent-filter>

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfkhbh
系列文章
更多 icon
同类精品
更多 icon
继续加载