0

私は、クリックして実行し、終了したら終了するスタンドアロン アプリケーションの開発に慣れています。

私は今、新しいタイプのアプリ (それが正しい言葉かどうかはわかりません) に取り組むことに興味を持っており、どうすればよいのか疑問に思っていました。何を調査すればよいかわかりません。ボールを転がすのに役立つアドバイスをいただければ幸いです。私が考えていることについてのアイデアをお伝えします。

私のアプリは、ダイヤラーで特別なアクションを実行する必要があります。ユーザーが番号をダイヤルして通話中に、ユーザーがメニューキーを押して、すべての連絡先をスクロールするオプションを見つけられるようにしたいと思います (ストックアプリまたは自分のリストのいずれか)電話に保存されている連絡先から取得し、1 つを選択します。選択すると、その連絡先の番号がダイヤラーに貼り付けられます (通話中に注意してください)。

これを正確に行う方法を教えてくれる答えは確かに期待していません。この種のアプリをこれまでに作成したことがないため、ガイダンスが必要です。その上、自分のやりたいことができるのか?

ありがとうございました。

4

3 に答える 3

3

Android ServiceまたはIntentServiceを通過する必要があります。Serviceは、バックグラウンドで実行時間の長い操作を実行できるアプリケーション コンポーネントであり、ユーザー インターフェイス (UI) を提供しません。

次の例は、Serviceクラスの実装である Android ブログからの抜粋です。

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

一方、非同期リクエストをオンデマンドで処理するサービスの基本クラスであるIntentServiceを使用しても、同じことが実現できます。

public class HelloIntentService extends IntentService {

  /** 
   * A constructor is required, and must call the super IntentService(String)
   * constructor with a name for the worker thread.
   */
  public HelloIntentService() {
      super("HelloIntentService");
  }

  /**
   * The IntentService calls this method from the default worker thread with
   * the intent that started the service. When this method returns, IntentService
   * stops the service, as appropriate.
   */
  @Override
  protected void onHandleIntent(Intent intent) {
      // 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) {
              }
          }
      }
  }
}

SO の投稿https://stackoverflow.com/a/4353653/432903を参照することもできます。

于 2012-08-21T03:19:57.153 に答える
2

アプリが主に javascript/webview/phonegap で作成されていない場合は、Service クラスを確認するだけです。そのクラスとリンクされたドキュメントは、あなたが知る必要があるすべてを教えてくれます。

于 2012-08-21T03:03:22.023 に答える
1

おそらく、IntentFilter を使用して、ユーザーがダイヤラーを使用したときにシステム通知を受け取ることができます。また、Android でバックグラウンドで動作する Service コンポーネントを学習する必要があります。

于 2012-08-21T03:22:03.237 に答える