FullScreen Notification

后端 未结 3 688
耶瑟儿~
耶瑟儿~ 2020-12-18 01:59

I want to create a full screen notification.I have achieved a notification by using the following code. What changes do i need to make it a full screen notification.

<
3条回答
  •  [愿得一人]
    2020-12-18 02:15

    try to add both SetStyle and SetPriorityas as the following: (it is working fine for me)

      .SetStyle(new Notification.BigTextStyle().BigText(message.Long_Message))   
      .SetPriority((int)NotificationPriority.Max)
    

提交回复
热议问题