This Handler class should be static or leaks might occur: IncomingHandler
问题 I\'m developing an Android 2.3.3 application with a service. I have this inside that service to communicate with Main activity: public class UDPListenerService extends Service { private static final String TAG = \"UDPListenerService\"; //private ThreadGroup myThreads = new ThreadGroup(\"UDPListenerServiceWorker\"); private UDPListenerThread myThread; /** * Handler to communicate from WorkerThread to service. */ private Handler mServiceHandler; // Used to receive messages from the Activity