Displaying a ListView on a Home Widget Using AppWidgetProvider

I would like to create a Home widget containing a ListView, but I do not know if this is possible, and if so, how to do it. I used ListActivity, and it was pretty simple, but can't find a way to do this using AppWidgetProvider.

thanks for the help

+3
source share
2 answers

This, unfortunately, is not possible, application widgets do not support ListViews.

+5
source

ListView is API level support starting at 11.

+1
source

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


All Articles