When my activity is initialized, I fill an ASTabMenu with code like this:
For x = 1 To <somevalue>
palbar.AddTab(<parameters>)
Next
But when something important changes, I want a whole new set of tabs.
The view has a .RemoveAt() method, and I suppose I could just .RemoveAt(0) until it goes 'ping', but is there a better way?
There is an .Initialize() method, but that wants a CallBack parameter, and I have no idea what to give it there..
For x = 1 To <somevalue>
palbar.AddTab(<parameters>)
Next
But when something important changes, I want a whole new set of tabs.
The view has a .RemoveAt() method, and I suppose I could just .RemoveAt(0) until it goes 'ping', but is there a better way?
There is an .Initialize() method, but that wants a CallBack parameter, and I have no idea what to give it there..