我有一个服务,在那个服务中我有一个线程。该线程有一个Runnable。从可运行文件我尝试发布通知,但我收到此错误。
The method setLatestEventInfo(Context, CharSequence, CharSequence, PendingIntent) in the type Notification is not applicable for the arguments (new Runnable(){}, CharSequence, CharSequence, PendingIntent)
如果我尝试从线程外部发布,一切正常。我的应用程序不断从服务器获得响应。当有来自服务器的更新数据并且应用程序未运行时,将创建一个新通知。为了避免在主线程上运行,我创建了一个新线程。