在android中通过声音启动服务?

发布于 2024-11-06 21:36:13 字数 49 浏览 1 评论 0原文

他们是否有可能启动一项服务并在 android 中发出声音。如果可能,请解释说明步骤

Is their any possibility to start a service throw a sound in android .If it is possible means please explain the steps with explanation

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

朮生 2024-11-13 21:36:13

我认为是的。要播放“声音”,您可以使用 MediaPlayer 它非常容易与本地文件一起使用。您只需将声音文件放入资产文件夹中,然后引用该文件调用 MediaPlayer 的播放方法即可。查看 api 以了解 MediaPlayer 的确切用法。

对于服务部分,创建一个服务并重写 onStartService 方法。在这个方法中,执行我上面所说的有关播放声音的所有操作。

请注意,如果您使用 Service,您应该自己处理并发问题,例如启动一个新线程,确保同时只播放一个声音等。

因此,您可以使用 IntentService ,它基本上为每个线程启动一个新线程传入意图。

I think it is. For playing a "sound" you can use MediaPlayer it is very easy to use with local files. You just put the sound files in your assets folder and then call play method of MediaPlayer with a reference to the file. Look apis for exact usage of MediaPlayer.

For service portion, make a service and override onStartService method. in this method do all the stuff I said above about playing a sound.

Note that if you use Service you should handle concurrency issues yourself like starting a new thread, ensuring only one sound playing at the same time etc.

So you can use an IntentService which basically starts a new thread for each incoming intent.

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