How to install RecyclerView in Android widget

From: https://developer.android.com/training/material/lists-cards.html

I want to install RecyclerView in a widget on the main screen. Is it possible, and if so, how to do it? Give some samples, please.

+5
source share
2 answers

RecyclerView is not supported for use as a RemoteView. See. CreatingLayout

The RemoteViews object (and therefore the application widget) can support the following layout classes:

Framelayout
Linearlayout
RelativeLayout
Gridlayout

And the following widget classes:
Analoglock
chronometer button
Imagebutton
Imageview
Progressbar
Textview
ViewFlipper
Listview
Gridview
Stackview
AdapterViewFlipper

+14
source

Source: https://habr.com/ru/post/1206916/


All Articles