Remove Menu

CharlesIPTI

Active Member
Licensed User
Longtime User
How do you remove a menu so that when the UI gets regenerated your not duplicating the menu content

B4X:
    Dim i As Int   
   Log("(CleanHouse)")
    For i = 0 To Activity.NumberOfViews - 1
        Activity.RemoveViewAt(0)
    Next

This is all fine but what about my menus
 
Top