0
我正在使用android應用程序,並且我收到來電的廣播,我需要在通知托盤中創建通知。從PhoneStateListener創建通知
我想下面
NotificationManager nm = (NotificationManager)this;
但這顯示錯誤Cannot cast from PhoneStateManager to NotificationManager
。
我也試過使用context
而不是this
,但後來說它不能從PhoneStateManager
轉換爲NotificationManager
。
如何從PhoneStateListener創建通知,這是可能的還是我需要將它傳遞給服務。
任何幫助,非常感謝。