Reputation: 55
I have some application. I would like that this application had 2 screens in one activity. Normally I would use FragmentActivity but required Android 2.1> =. How to solve it? I read that you can use FrameLayout and hide depending on the desired screen.
Upvotes: 0
Views: 71
Reputation: 12919
Here are your options:
setVisibility()
.Upvotes: 1