Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有长拉网络服务。如何将我的 android 客户端与 Long Pull 服务器连接?我需要永久后台服务来接收来自服务器的消息并将它们显示为通知。
我需要永久后台服务来接收来自服务器的消息并将它们显示为通知。
您不能拥有“永久后台服务”,除非您构建自己的固件并将其实现为 C/C++ 守护进程。
您可以使用它startForeground()来降低您的服务被自动销毁的几率,但用户和操作系统仍然可以随时出于任何原因摆脱您的进程(连同其服务)。
startForeground()
许多用户不喜欢“永久后台服务”,因为他们浪费资源,因此会以任务杀手和Play商店低评级攻击此类服务的开发者。