フォアグラウンドでサービスを開始することで、私はまだ完全に混乱しています。
現在: バックグラウンドでサービスを開始して、センサー データと GPS データの統計を実行するアクティビティがあります。殺され続けるので、フォアグラウンドで開始しました。正常に動作します。ただし、ステータスバーの通知アイコンに触れると、新しいアクティビティが開始されたようです (保留中のインテントに記載されています)。
一言で言えば、私はまだ全体に混乱しています。フォアグラウンドでサービスを開始するアクティビティが必要です。通知バーをクリックすると、サービスを開始した既存のアクティビティが前面に表示されます。
アクティビティ内のコードを次に示します (現在、PendingIntent を null に設定しています)。
private ServiceConnection mConnection = new ServiceConnection() {
public void onServiceConnected(ComponentName className, IBinder service) {
// This is called when the connection with the service has been
// established, giving us the service object we can use to
// interact with the service. Because we have bound to a explicit
// service that we know is running in our own process, we can
// cast its IBinder to a concrete class and directly access it.
cycleDataService = ((CycleDataProService.LocalBinder) service)
.getService();
//Todo the notification bullshaite here...
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.icon;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = "My notification";
CharSequence contentText = "Hello World!";
//Intent notificationIntent = new Intent(cycleDataService, CycleDataProService.class);
//PendingIntent contentIntent = PendingIntent.getActivity(context, 0, myOwnIntent, PendingIntent.FLAG_UPDATE_CURRENT);
PendingIntent pi = PendingIntent.getActivity(context, 0, null, 0);
//PendingIntent contentIntent = PendingIntent.getActivity(context, 0, , 0);
notification.setLatestEventInfo(context, contentTitle, contentText, pi);
mNotificationManager.notify(HELLO_ID, notification);
cycleDataService.startForeground(HELLO_ID, notification);
/*cycleDataService.startService(new Intent(cycleDataService,
CycleDataProService.class));*/
serviceIsRunning = true;
// Tell the user about this for our demo.
// Toast.makeText(Binding.this, R.string.local_service_connected,
// Toast.LENGTH_SHORT).show();
}