AndroidRemoteViews
Composable Function
Android
@Composable
public fun AndroidRemoteViews(remoteViews: RemoteViews, modifier: GlanceModifier = GlanceModifier)
Add RemoteViews into a glance composition.
Parameters
| remoteViews | the views to add to the composition. | 
| modifier | modifier used to adjust the layout algorithm or draw decoration content. | 
Android
@Composable
public fun AndroidRemoteViews(
    remoteViews: RemoteViews,
    @IdRes containerViewId: Int,
    modifier: GlanceModifier = GlanceModifier,
    content: @Composable () -> Unit,
)
Add RemoteViews into a glance composition as a container.
Parameters
| remoteViews | the views to add to the composition. | 
| containerViewId | defines the view id of the container in the RemoteViewsprovided. Any pre-existing children of that view will be removed withRemoteViews.removeAllViews, and any children defined in thecontentblock will be added withRemoteViews.addView(orRemoteViews.addStableViewif available on the system). | 
| modifier | modifier used to adjust the layout algorithm or draw decoration content. | 
| content | the content that will be added to the provided container. | 
