如何制作用于播放 MP3 文件的意图过滤器? [英] How do I make an intent-filter for playing an MP3 file?

查看:22
本文介绍了如何制作用于播放 MP3 文件的意图过滤器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 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.

提前致谢.

推荐答案

希望这个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>

这篇关于如何制作用于播放 MP3 文件的意图过滤器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆