I have a TabView and on its first tab I have a ViewFlipper displaying two pages of ImageButtons (say buttonsPage1 and buttonsPage2).
When in landscape orientation, I need the image buttons pages to be scrollable, so I tried to add a ScrollView on buttonsPage1 and another on buttonsPage2. I get a StackOverflowError.
I tried then to suppress the ScrollView from the pageButtons1 and 2 and to include the ViewFlipper in a ScrollView. I got the same StackOverflowError.
If I completely remove the ViewFlipper, the applications runs as expected, no error occurs, only I DO need the scrolling when in landscape orientation.
Can anybody, please, give me hand to solve this issue?