Android-通知栏上的RemoteView

时间:2023-03-09 07:48:04
Android-通知栏上的RemoteView

Android-通知栏上的RemoteView

学习自

《Android开发艺术探索》
https://developer.android.google.cn/reference/android/widget/RemoteViews

RemoteView漫谈

什么是RemoteView?先找官方文档

以下内容来自于RemoteViews类的官方文档
A class that describes a view hierarchy that can be displayed in another process. The hierarchy is inflated from a layout resource file, and this class provides some basic operations for modifying the content of the inflated hierarchy.
该类描述了一个能够被显示在其他进程中的View。该View的层次结构来自资源文件,并且此类提供了一下基础的操作来帮助修改View的内容。

从上面的官方文档中我们了解到,远程View之所以被称作为远程View,是因为他们运行在另一个进程中当然远了