在文档中的示例中(https://developer.android.com/guide/components/services.html#extendingservice),我们使用线程的“ looper”,然后在服务类中使用它,然后该服务将像在单独的线程中一样工作吗?

public class HelloService extends Service {
  private Looper mServiceLooper;
  private ServiceHandler mServiceHandler;

  // Handler that receives messages from the thread
  private final class ServiceHandler extends Handler {
      public ServiceHandler(Looper looper) {
          super(looper);
      }
      @Override
      public void handleMessage(Message msg) {
          // Normally we would do some work here, like download a file.
          // For our sample, we just sleep for 5 seconds.
          long endTime = System.currentTimeMillis() + 5*1000;
          while (System.currentTimeMillis() < endTime) {
              synchronized (this) {
                  try {
                      wait(endTime - System.currentTimeMillis());
                  } catch (Exception e) {
                  }
              }
          }
          // Stop the service using the startId, so that we don't stop
          // the service in the middle of handling another job
          stopSelf(msg.arg1);
      }
  }

  @Override
  public void onCreate() {
    // Start up the thread running the service.  Note that we create a
    // separate thread because the service normally runs in the process's
    // main thread, which we don't want to block.  We also make it
    // background priority so CPU-intensive work will not disrupt our UI.
    HandlerThread thread = new HandlerThread("ServiceStartArguments",
            Process.THREAD_PRIORITY_BACKGROUND);
    thread.start();

    // Get the HandlerThread's Looper and use it for our Handler 
    mServiceLooper = thread.getLooper();
    mServiceHandler = new ServiceHandler(mServiceLooper);
  }

  @Override
  public int onStartCommand(Intent intent, int flags, int startId) {
      Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();

      // For each start request, send a message to start a job and deliver the
      // start ID so we know which request we're stopping when we finish the job
      Message msg = mServiceHandler.obtainMessage();
      msg.arg1 = startId;
      mServiceHandler.sendMessage(msg);

      // If we get killed, after returning from here, restart
      return START_STICKY;
  }

  @Override
  public IBinder onBind(Intent intent) {
      // We don't provide binding, so return null
      return null;
  }

  @Override
  public void onDestroy() {
    Toast.makeText(this, "service done", Toast.LENGTH_SHORT).show(); 
  }
}

谢谢

有帮助吗?

解决方案

线(a HandlerThread)开始 onCreate, , 你打电话时 thread.start();, ,然后您将获得对 Looper 该线程(只有一个 Looper 被创建 HandlerThread)创建一个 HandlerHandler 用于将消息发布到线程。这 Looper 是等待消息中的对象 while(true) 环形。

每当将命令发送到 Service, , 这 ServiceHandlerThread 通过 Handler.

仔细查看源代码将帮助您更好地了解所有功能的工作原理。有一个关于 HandlerLooperS AT Square工程博客 - Android主线程的旅程 - 第1部分.

您也可以使用 意图服务 避免实例化您自己的线程。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top