基本上我已使用RemoteView
创建了自定义通知,并且需要定期更新该远程视图中的TextView
。
根据我的理解,我需要通过RemoteView
更新AppWidgetManager
,更具体地说,使用方法partiallyUpdateAppWidget (int appWidgetId, RemoteViews views)
我有没有办法提供正确的appWidgetId
而没有AppWidgetProvider
?
答案 0 :(得分:0)
要更新通知(无论是与其关联的RemoteView
或任何通知字段本身),您必须重新创建整个通知,并使用与之前添加的相同ID调用notificationManager.notify()
。这将更新通知。