标签: android service
覆盖IntentService onHandleIntent(),这样,IntentService永远不会关机! 如果我多次启动此服务,将导致StackoverflowError,它的喜欢由 Looper.loop()引起的原因?,请帮忙,谢谢
@Override protected void onHandleIntent(Intent intent) { doSomething(); Looper.loop(); }