I have a TextView inside a LinearLayout and a VideoView inside a LinearLayout.
The parent layout is a RelativeLayout that includes the TextView's linear layout and VideoView's linear layout.
Since I add the VideoView with FILL_PARENT, FILL_PARENT params (coz I want it to fill the screen in landscape mode), in some phones when I rotate to landscape, the VideoView fills the entire screen, and the TextView is not visible.
This happens only in certain phones, and only in landscape mode.
I have tried setting a top padding for the VideoView's linear layout, but it looks like the padding should be different for different phones. For eg: a top padding of 10 works on a myTouch but not on Droid.
Any ideas?
Thanks Chris