HandlerThread thread = new HandlerThread("DownloadService");
thread.start();
在 thread.start() 返回后,与等待消息到达消息队列的线程相关联的 looper 是否?如果是这样,那么我需要做的就是将这个线程的looper与一个实现handleMessage()的类关联起来。这会是正确的实现吗?
HandlerThread thread = new HandlerThread("DownloadService");
thread.start();
在 thread.start() 返回后,与等待消息到达消息队列的线程相关联的 looper 是否?如果是这样,那么我需要做的就是将这个线程的looper与一个实现handleMessage()的类关联起来。这会是正确的实现吗?