2
(這是使用C#/ Xamarin)是否需要在Android應用程序中使用通知的權限?
是否有使用NotificationManager.Notify()所需的權限。沒有通知出現,但它應該是。這裏是我的代碼:
int myId = 123123;
Notification nt = new Notification(Resource.Drawable.Icon,"Stuff");
NotificationManager not = (NotificationManager)GetSystemService(Context.NotificationService);
not.Notify (myId, nt);