4

私のサービスは拡張され、IntentServiceで開始されると呼び出されます。ただし、サービスが(バインディングが必要です)で開始された場合、は呼び出されません。startServiceonHandleIntentbindServiceonHandleIntent

で開始しonHandleIntentたときに呼び出す必要がありますか?開始する唯一の方法はありますか?IntentServicebindServicestartServiceIntentService

のドキュメントにIntentServiceは次のように書かれています。

クライアントはstartService(Intent)呼び出しを介してリクエストを送信します。サービスは必要に応じて開始され、ワー​​カースレッドを使用して各インテントを順番に処理し、作業がなくなると自動的に停止します。

startService現在、すぐに電話して問題を解決してbindServiceいますが、醜いです。たった1回の呼び出しで動作させる方法があることを知りたいです。

コードスニペットが続きます、それは私が明白な何かを逃しているかもしれません。

ExampleService.java

public class ExampleService extends IntentService {

private class IncomingHandler extends Handler {

    @Override
    public void handleMessage(Message message) {

        if (message.replyTo != null) {
            outMessenger = message.replyTo;
        }
    }
}

private Messenger messenger = new Messenger(new IncomingHandler()); 
private Messenger outMessenger = null;


public ExampleService() {
    super("ExampleService");
}

@Override
public IBinder onBind(Intent intent) {
    return messenger.getBinder();
}

@Override
protected void onHandleIntent(Intent arg0) {

    System.out.println("Service started");

    for (int i = 0; i < 5; i++) {

        SystemClock.sleep(5000);

        if (outMessenger != null) {
            try {
                outMessenger.send(Message.obtain());
            } catch (RemoteException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
}
}

サービスManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.service"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="3"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service android:name=".ExampleService">
        <intent-filter>
            <action android:name="com.example.service.ExampleService" />
        </intent-filter>
    </service>
</application>
</manifest>

MainActivity.java(呼び出し元)

public class MainActivity extends Activity implements ServiceConnection {


private class IncomingHandler extends Handler {

    @Override
    public void handleMessage(Message msg) {

        Toast.makeText(getApplicationContext(), "Message received", Toast.LENGTH_SHORT).show();
        System.out.println("Message received!");
        super.handleMessage(msg);
    }
}

private Messenger messenger = new Messenger(new IncomingHandler());

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button button = (Button) findViewById(R.id.button1);
    button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            Intent intent = new Intent("com.example.service.ExampleService");
            bindService(intent, MainActivity.this, Context.BIND_AUTO_CREATE);
            //startService(intent);
        }
    });

}

@Override
public void onServiceConnected(ComponentName name, IBinder binder) {

    Message message = Message.obtain();
    message.replyTo = messenger;

    try {
        new Messenger(binder).send(message);
    } catch (RemoteException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

@Override
public void onServiceDisconnected(ComponentName name) {
    // TODO Auto-generated method stub
}
}
4

2 に答える 2

9

IntentServiceがbindServiceで開始されたときに、onHandleIntentを呼び出す必要がありますか?

いいえ。

startServiceはIntentServiceを開始する唯一の方法ですか?

私見、はい。IMHOIntentServiceは、バインディングパターン用に設計されていません。

あなたの場合、あなたは次のことができます:

  • 、またはによって送信されたコマンドのエクストラでMessengerアクティビティからaを渡しますIntentstartService()
  • を使用するLocalBroadcastManager、または
  • Ottoを使用する、または
  • アクティビティの存続期間を超えて継続する可能性があり、たとえば、その場合に作業が完了しIntentServiceたときにを表示したい場合は、順序付けられたブロードキャストを使用します。Notification
  • 等。
于 2012-09-19T16:30:32.597 に答える
0

startServiceとbindServiceの両方を呼び出す必要があります。これは私のために働いた。

于 2017-03-06T09:55:54.487 に答える