How can I get View instance from RemoteViews ? There are RemoteViews.reapply and RemoteViews.apply API functions , but I don’t know how to use them.
How can I get View instance from RemoteViews ? There are RemoteViews.reapply and RemoteViews.apply
Share
If you are the one creating the
RemoteViewsto hand to something else — as is the case with anAppWidgetProvider— you cannot “get View instance from RemoteViews”. TheViewhierarchy created from yourRemoteViewsis created in a different process than your own, and so you do not have direct access to it.