0

通知を表示すると、Intent の Extras データを取得できません。以下は、通知を作成する方法と、通知に渡すインテント データです。何か問題がありますか?これと非常によく似た、うまくいくように見える他の例を見てきました。

    protected override void OnMessage(Context context, Intent intent)
    {
            // irrelevant stuff removed

            string title = "Notification";
            string message = "The Notification Message";

            Bundle valuesForActivity = new Bundle();
            valuesForActivity.PutInt("panelId", (int)panelId);

            Intent pendingIntent = new Intent(context, typeof (TabContainer));
            pendingIntent.PutExtras(valuesForActivity);
            pendingIntent.SetFlags(ActivityFlags.SingleTop);
            pendingIntent.PutExtra("panelId", (int)panelId);

            //neither PendingIntentFlags.CancelCurrent or PendingIntentFlags.UpdateCurrent works
            PendingIntent resultPendingIntent = PendingIntent.GetActivity(context, 0, pendingIntent, PendingIntentFlags.CancelCurrent);
            //PendingIntent resultPendingIntent = PendingIntent.GetActivity(context, 0, pendingIntent, PendingIntentFlags.UpdateCurrent);

            var builder = new NotificationCompat.Builder(context);
            builder.SetContentTitle(title);
            builder.SetAutoCancel(true);
            builder.SetSmallIcon(Resource.Drawable.icon24);
                builder.SetLargeIcon(BitmapFactory.DecodeStream(context.Resources.OpenRawResource(Resource.Drawable.icon96)));
                builder.SetContentText(message);
            builder.SetContentIntent(resultPendingIntent);
            builder.SetTicker(title);
            builder.SetVibrate(new long[] { 100, 200, 300 });

            var notificationManager = GetSystemService(Context.NotificationService) as NotificationManager;
            notificationManager.Notify(1, builder.Build());
    }

次に、TabContainer アクティビティでは、必要なデータがありません。

public class TabContainer : TabActivity
{
    protected override void OnResume()
    {
        base.OnResume();

        int panelId = Intent.GetIntExtra("panelId", 0); // always 0

        var extras = Intent.Extras; // always null

    }
}
4

1 に答える 1

2

これはうまくいきました:

public class TabContainer : TabActivity
{
    protected override void OnNewIntent(Intent intent)
    {
        base.OnNewIntent(intent);

        try
        {
            var panelId = intent.GetIntExtra("panelId", 0);

            // do the things I need with panelId.
        }
        catch (Exception ex)
        {
            DealWithError(ex);
        }
    }
}
于 2013-09-04T17:35:21.077 に答える