0

フォアグラウンドで動作するサービスがあり、メインアクティビティが起動すると、次のコードで通知が起動されます。

private void showNotification() {
    Log.i(TAG, LocalService.class.getName() + "showNotification()");
    Intent notificationIntent = new Intent(getApplicationContext(), NotificationActivity.class);
    //notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, notificationIntent, 0);

    nm = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
    // Set the icon, scrolling text and timestamp

    int icontouse = R.drawable.icon;
    if (app.prefs.getBoolean("prefs_useprivacyicon", false)) {
        icontouse = R.drawable.icon_privacy;
    }

    n = new Notification(icontouse, getString(R.string.voice_pro_ready), System.currentTimeMillis());

    n.contentView = getRemoteView();
    n.contentIntent = contentIntent;

    startForeground(myID, n);
    nm.notify(myID, n);
}

私の問題はPendingIntentです。メインアクティビティが一時停止ステータスの場合、ステータスバーの通知をクリックするとこれが前面に表示されますが、メインアクティビティがfinish()によって閉じられた場合、これは表示されません。

アクティビティが表示されるよりもメモリ内にある場合、メモリ内で使用できない場合は、新しいインスタンスを起動できるようにする必要があります。

4

1 に答える 1

1
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);

に変更されました notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP)

もう一度やり直してください

于 2012-05-13T08:49:01.890 に答える