I have a ListView being Dimmed as a B4XView. It won't allow me to programmatically add items to it.
I've seen some references to myListView.Items.Add(...), but my list view doesn't give me an "Items" property, nor any kind of Add or AddSingleItem method.
Use B4XView when it helps you. In the case of ListView it is better to declare it with the specific type as B4XView doesn't provide the required methods.
The best solution is to switch to xCustomListView. I never use ListView in new projects.