I'm working on a ToDo app, and I'll like to have a list of relevant todo items show up in a widget on the home screen. I'm searching the forums and it does not seem clear that B4A supports listview in the home screen:
Edit: widgets are handled with receivers now. See the attached example. This tutorial will explain how to implement your own home screen widgets (also named App Widgets). It is important to understand that the widgets are created and managed in another process, different than the process that...
I am working on app that lets user create scheduled alerts. I would like to have a widget which will show the user a list of his upcoming alerts. Since it is a list, I believe it should be done with a scrollable view like ListView or ScrollView. Android supports such widgets from 3.0. Is it...