我是靠谱客的博主 眼睛大萝莉,最近开发中收集的这篇文章主要介绍Context.startForegroundService() did not then call Service.startForeground() 崩溃问题,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
问题:
android.app.RemoteServiceException
Context.startForegroundService() did not then call Service.startForeground()
android.app.ActivityThread$H.handleMessage(ActivityThread.java:2002)
android.os.Handler.dispatchMessage(Handler.java:106)
android.os.Looper.loop(Looper.java:192)
android.app.ActivityThread.main(ActivityThread.java:6893)
java.lang.reflect.Method.invoke(Native Method)
com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:549)
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:875)
分析:
使用startForegroundService必须在5秒之内startForeground一下
解决方案:
//在启动的service里调用一下startForeground方法,2021这个值看你自己需求,0除外
startForeground(2021, new Notification());
最后
以上就是眼睛大萝莉为你收集整理的Context.startForegroundService() did not then call Service.startForeground() 崩溃问题的全部内容,希望文章能够帮你解决Context.startForegroundService() did not then call Service.startForeground() 崩溃问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复