Not sure if how many users here know Application in b4a. hehe..
i wish for a new property for Application object.
Application.Icon (readonly) - returns the application icon (bitmap) for easy access.
Also, implement get/set property for the ID (Identifier) for ALL existing views (button, listview, imageview, viewwrappers, etc).
.setId(int id) - set view id
.getId - returns view id
.findViewById(int id) - returns Object/View
.findViewWithTag(Object tag) - returns Object/View
So instead of using something like
panel.GetView(index) to get the view, we can just use
panel.findViewById(id) or
panel.findViewWithTag(tag)