RemoteView会用在两个地方:一个是在AppWidget,另外一个是在Notification.
RemoteView是用来描述一个垮进程显示的view
1,AppWidget---RemoteView
AppWidgetProvider是一个BrocaseReceiver,只是接受到Enable, Update,disale,delete这些message,而真正显示界面的是
AppWidgetHostView(这是在Launcher里面实现的)这中间就是通过RemoteView来沟通。通过RemoteView告诉Launcher你想要的
AppWidget是什么。
2,Notification--RemoteView
你想自定义你的Notification也必须通过RemoteView.因为你定义的Nofication和显示Notification也是两个不同的进程。