So here's the deal.
My app's layout is set up with a View Flipper. The View Flipper contains seven Linear Layout children (views). Each Linear layout then contains a List View. Each linear layout represents a different category in my app.
And here is my dilemma.
Currently my layout is pretty static and bland, so I want to be able to give users the ability select any number of the available categories. This will mean I will have to be able to dynamically create and remove Linear Layouts, each with its own List View. There's also the question of creating and removing Array Adapters for my List Views.
Any suggestions?