0
私はXamarinにはかなり新しく、Xamarin開発者のウェブサイトからさまざまなチュートリアルを試しています。 Android用の通知コードをテストしていて、「コンテキストが現在のコンテキストに存在しません」というエラーが表示されます。 MainActivity.csの中に次のコードを置きます。この問題を解決するにはどうすればよいですか?コンテキストが現在のコンテキストに存在しません(Androidプロジェクト)
Notification.Builder builder = new Notification.Builder (this)
.SetContentTitle ("Sample Notification")
.SetContentText ("Hello World! This is my first notification!")
.SetSmallIcon (Resource.Drawable.ic_notification);
// Build the notification:
Notification notification = builder.Build();
// Get the notification manager:
NotificationManager notificationManager =
GetSystemService (Context.NotificationService) as NotificationManager;
// Publish the notification:
const int notificationId = 0;
notificationManager.Notify (notificationId, notification);
どのように解決しましたか?私は同じエラーがあります –