在android中通过声音启动服务?
他们是否有可能启动一项服务并在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为是的。要播放“声音”,您可以使用
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.