Android service with long living HttpConnection
问题 I am tring to develop a project that connects to a comet server with long living connections. i do this job in a service. But when android device goes to idle mode, the thread i started from service stops working and do not close connections or try a new connection. is there any method that i should use for this stuff. 回答1: Using PowerManager.WakeLock solved my problem. I know, it kills baterry usage but, i had to use a long living service. 来源: https://stackoverflow.com/questions/5505801