ScheduledExecutorService
を使用してアクションを送信しようとするLocalBroadcastManager
と、実際のアクションが送信されていないようです (または配信されていません)。コード例は次のとおりです。
public class SomeService extends IntentService {
private static final String TAG = SomeService.class.getSimpleName();
public static final String ACTION = "some-action";
private ScheduledExecutorService scheduledTaskExecutor = Executors.newScheduledThreadPool(1);
public SomeService() {
super(TAG);
}
@Override
protected void onHandleIntent(Intent intent) {
String action = intent.getAction();
if (action.equals("scheduled_action")) {
scheduledTaskExecutor.schedule(new ScheduledAction(ACTION), 10, SECONDS);
} else if (action.equals("send_it_now")) {
sendAction(ACTION);
}
}
private void sendAction(String action) {
Log.d(TAG, "send action [" + action + "]");
Intent intent = new Intent(action);
LocalBroadcastManager.getInstance(SomeService.this).sendBroadcast(intent);
}
// it also could be Callable, but effect is pretty the same
private class ScheduledAction implements Runnable {
final String action;
ScheduledAction(String action) {
this.action = action;
}
@Override
public void run() {
sendAction(action);
}
}
}
着信アクションに応じて、サービスはACTION
すぐに送信するか、10 秒後に送信します。これは に登録されているアクティビティですACTION
:
public class SomeActivity extends Activity {
private static final String TAG = SomeActivity.class.getName();
private BroadcastReceiver actionReceiver = new ActionReceiver();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
IntentFilter filter = new IntentFilter();
filter.addAction(SomeService.ACTION);
LocalBroadcastManager.getInstance(this).registerReceiver(actionReceiver, filter);
}
@Override
protected void onDestroy() {
LocalBroadcastManager.getInstance(this).unregisterReceiver(actionReceiver);
super.onDestroy();
}
private class ActionReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Log.d(TAG, "received action [" + action + "]");
}
}
}
send_it_now
すべてが期待どおりに機能する場合:
Intent intent = new Intent(..., SomeService.class);
intent.setAction("send_it_now");
startService(intent);
logcat に出力された適切なメッセージが表示されます。
...
SomeService send action [some-action]
SomeActivity received action [some-action]
...
しかし、私が使用しようとするとscheduled_action
:
Intent intent = new Intent(..., SomeService.class);
intent.setAction("scheduled_action");
startService(intent);
アクションが送信されましたが、アクティビティで受信されませんでした:
...
SomeService send action [some-action]
...
それで、誰かがこのコードの何が問題なのかを説明したり、少なくとも説明を見つけることができる方向を示したりできますか?
いくつかの更新。同じ目的でTimerとTimerTaskを使用する場合、 ScheduledExecutorServiceとScheduledFutureを使用しました- 動作します!