3

ドキュメント ( https://developer.android.com/guide/components/services.html#ExtendingService )のこの例では、スレッドの「ルーパー」を使用し、それを Service クラスで使用してから、サービスは別のスレッドにあるかのように機能しますか?

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(); 
  }
}

ありがとう

4

1 に答える 1

6

スレッド (a HandlerThread) は で開始されonCreate、 を呼び出すと、そのスレッドのthread.start();への参照を取得し(ごとに 1 つだけ作成されます)、 を作成し、を使用してメッセージをスレッドにポストします。は、ループ内でメッセージを待機するオブジェクトです。LooperLooperHandlerThreadHandlerHandlerLooperwhile(true)

コマンドが に送信されるたびに、Serviceはを介し​​て にServiceメッセージをポストします。HandlerThreadHandler

ソースコードをよく見ると、すべてがどのように機能するかをよりよく理解するのに役立ちます。Square Engineering Blog - Android Main Thread の旅 - パート 1 に、HandlerおよびLoopersに関する優れた投稿があります。

IntentServiceを使用して、独自のスレッドのインスタンス化を回避することもできます。

于 2013-11-07T03:12:04.650 に答える