android– 如何让用户使用我的应用程序播放视频?

android– 如何让用户使用我的应用程序播放视频?,第1张

概述昨晚花了几个小时为Honeycomb开发了一款非常甜美的视频播放器,现在我当然喜欢能够使用它的人.如何让我的应用程序监听/接收“视频播放广播”?我猜它与manifest.xml文件有关,但我无法在AndroidDeveloper网站上找到任何关于它的信息.我尝试使用以下内容但没有取得多大成功:<recei

昨晚花了几个小时为Honeycomb开发了一款非常甜美的视频播放器,现在我当然喜欢能够使用它的人.

如何让我的应用程序监听/接收“视频播放广播”?

我猜它与manifest.xml文件有关,但我无法在Android Developer网站上找到任何关于它的信息.

我尝试使用以下内容但没有取得多大成功:

<receiver androID:name=".VIDeoPlayer">    <intent-filter>        <action androID:name="androID.intent.action.VIEW">            <data androID:mimeType="vIDeo/*" />        </action>    </intent-filter></receiver>

解决方法:

我最终使用manifest.xml文件中的以下代码解决了这个问题:

    <!-- VIDeo player -->    <activity androID:name=".VIDeoPlayer" androID:label="@string/app_name"        androID:theme="@style/BlackHolo" androID:screenorIEntation="sensorLandscape">        <intent-filter>            <action androID:name="androID.intent.action.VIEW" />            <category androID:name="androID.intent.category.DEFAulT" />            <category androID:name="androID.intent.category.broWSABLE" />            <data androID:scheme="rtsp" />        </intent-filter>        <intent-filter>            <action androID:name="androID.intent.action.VIEW" />            <category androID:name="androID.intent.category.DEFAulT" />            <data androID:mimeType="vIDeo/*" />            <data androID:mimeType="application/sdp" />        </intent-filter>        <intent-filter>            <action androID:name="androID.intent.action.VIEW" />            <category androID:name="androID.intent.category.DEFAulT" />            <category androID:name="androID.intent.category.broWSABLE" />            <data androID:scheme="http" />            <data androID:mimeType="vIDeo/*" />        </intent-filter>    </activity>
总结

以上是内存溢出为你收集整理的android – 如何让用户使用我的应用程序播放视频?全部内容,希望文章能够帮你解决android – 如何让用户使用我的应用程序播放视频?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1114164.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存