Creating android appwidget ListView for SDK 8?

I developed a small Android application that dumps data from a web page. I wrote a special adapter (using BaseAdapter) to display data in a ListView (android.R.layout.simple_list_item_2).

Now I thought it would be nice to have an application widget that will display scraper data, but it seems you can't use the ListView below SDK 11 in AppWidgets. I want to support at least SDK version 8.

Is there something like ListView that I could use to display data as a home screen widget in the SDK version 8 comfortably?

+4
source share

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


All Articles