1

私のアプリケーションではIntentService、クラウドからファイルをダウンロードするために を使用しています。で進行状況を示しNotificationManagerます。ステータス (ダウンロード中/完了または失敗) を表示する必要がありActivityますIntentService

私の問題は、アプリを閉じて再び開くと、からダウンロードのステータスを取得したいことですIntentService

これを行う最良の方法はどれですか?

4

2 に答える 2

3

アクティビティを呼び出すことで、アクティビティをサービスにバインドさせることができますbindService()ドキュメントに従って:

アプリケーション コンポーネントが bindService() を呼び出してサービスにバインドすると、サービスは「バインド」されます。バインドされたサービスは、コンポーネントがサービスとやり取りしたり、要求を送信したり、結果を取得したり、プロセス間通信 (IPC) を使用してプロセス全体でそれらを実行したりできるようにするクライアント サーバー インターフェイスを提供します。バインドされたサービスは、別のアプリケーション コンポーネントがバインドされている間だけ実行されます。一度に複数のコンポーネントをサービスにバインドできますが、すべてのコンポーネントがバインド解除されると、サービスは破棄されます。

また:

プロセス間通信 (IPC) を介して、アプリケーション内のアクティビティやその他のコンポーネントからサービスとやり取りしたり、アプリケーションの機能の一部を他のアプリケーションに公開したりする場合は、バインドされたサービスを作成する必要があります。

ドキュメントは、これの完全に機能する例を提供します。以下は提供されたリンクからの抜粋です。

サービス クラス:

public class LocalService extends Service {
    // Binder given to clients
    private final IBinder mBinder = new LocalBinder();
    // Random number generator
    private final Random mGenerator = new Random();

    /**
     * Class used for the client Binder.  Because we know this service always
     * runs in the same process as its clients, we don't need to deal with IPC.
     */
    public class LocalBinder extends Binder {
        LocalService getService() {
            // Return this instance of LocalService so clients can call public methods
            return LocalService.this;
        }
    }

    @Override
    public IBinder onBind(Intent intent) {
        return mBinder;
    }

    /** method for clients */
    public int getRandomNumber() {
      return mGenerator.nextInt(100);
    }
}

活動クラス:

public class BindingActivity extends Activity {
    LocalService mService;
    boolean mBound = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    @Override
    protected void onStart() {
        super.onStart();
        // Bind to LocalService
        Intent intent = new Intent(this, LocalService.class);
        bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
    }

    @Override
    protected void onStop() {
        super.onStop();
        // Unbind from the service
        if (mBound) {
            unbindService(mConnection);
            mBound = false;
        }
    }

    /** Called when a button is clicked (the button in the layout file attaches to
      * this method with the android:onClick attribute) */
    public void onButtonClick(View v) {
        if (mBound) {
            // Call a method from the LocalService.
            // However, if this call were something that might hang, then this request should
            // occur in a separate thread to avoid slowing down the activity performance.
            int num = mService.getRandomNumber();
            Toast.makeText(this, "number: " + num, Toast.LENGTH_SHORT).show();
        }
    }

    /** Defines callbacks for service binding, passed to bindService() */
    private ServiceConnection mConnection = new ServiceConnection() {

        @Override
        public void onServiceConnected(ComponentName className,
                IBinder service) {
            // We've bound to LocalService, cast the IBinder and get LocalService instance
            LocalBinder binder = (LocalBinder) service;
            mService = binder.getService();
            mBound = true;
        }

        @Override
        public void onServiceDisconnected(ComponentName arg0) {
            mBound = false;
        }
    };
}

サービスでは、ダウンロードの進行状況のポーリングなど、アクティビティが呼び出すことができるパブリック メソッドを定義できます。詳細については、ドキュメントを参照してください。

于 2015-03-20T09:03:19.973 に答える
2

Serviceと の間で通信接続を確立するには、いくつかの方法がありますActivity。この2つをお勧めします

  • まず、優れたライブラリを使用できますOtto@ProduceOtto では、アノテーション付きのメソッドを使用することもできます。このメソッドを使用すると、ダウンロードに関する最新情報が返されます。あなた@Subscribeがあなたの中にいるとき、あなたActivityはすぐに最新の情報を手に入れます。https://github.com/square/otto

  • Android組み込みを使用している場合DownloadManagerは、更新と結果を で返します。との両方にBroadcast登録できます。このようにして、両方を更新できます。を使用することをお勧めします、それは素晴らしいです。 http://developer.android.com/reference/android/app/DownloadManager.htmlBroadcastServiceActivityDownloadManager

于 2015-03-20T08:48:26.900 に答える