Xamarin Android本地通知

时间:2015-01-05 04:36:59

标签: xamarin.ios xamarin xamarin.android

我正在项目中使用API​​ Level 10(Xamarin.Android v2.3支持)

装配参考缺失错误。

主要活动

按钮点击处理程序具有以下代码

        Bundle valuesForActivity = new Bundle();
        valuesForActivity.PutInt("count", _count);

        // Create the PendingIntent with the back stack
        // When the user clicks the notification, SecondActivity will start up.
        Intent resultIntent = new Intent(this, typeof(SecondActivity));
        resultIntent.PutExtras(valuesForActivity); // Pass some values to SecondActivity.

        TaskStackBuilder stackBuilder = TaskStackBuilder.Create(this);
        stackBuilder.AddParentStack(Java.Lang.Class.FromType(typeof(SecondActivity)));
        stackBuilder.AddNextIntent(resultIntent);

        PendingIntent resultPendingIntent = stackBuilder.GetPendingIntent(0, (int)PendingIntentFlags.UpdateCurrent);

        // Build the notification          
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
            .SetAutoCancel(true) // dismiss the notification from the notification area when the user clicks on it
            .SetContentIntent(resultPendingIntent) // start up this activity when the user clicks the intent.
            .SetContentTitle("Button Clicked") // Set the title
            .SetNumber(_count) // Display the count in the Content Info
            .SetSmallIcon(Resource.Drawable.monoandroidsplash) // This is the icon to display
            .SetContentText(String.Format("The button has been clicked {0} times.", _count)); // the message to display.

        // Finally publish the notification
        NotificationManager notificationManager = (NotificationManager)GetSystemService(NotificationService);
        notificationManager.Notify(ButtonClickNotificationId, builder.Build());

        _count++;`

的错误

TaskStackBuilder stackBuilder = TaskStackBuilder.Create(this);

NotificationCompat.Builder builder = new NotificationCompat.Builder(this)

错误缺少程序集引用,TaskStackBuilder不存在

我没有得到程序集引用中缺少的内容 请帮忙

1 个答案:

答案 0 :(得分:1)

这是一个迟到的回复,但可能会帮助别人。

由于Mono.Anroid的版本(较低)

,您提到的问题正在发生

在较低版本(例如4.2)中,缺少Android.App.TaskstackBuilder命名空间。 升级Mono.Android可以解决问题。