Say in portrait mode i made my screen divided into 2x1 matrix (2 VideoViews), so that two videos can be played simultaneously.
-------------------
| |
| |
| VV1 |
| |
-------------------
| |
| |
| VV2 |
| |
-------------------
Now, when i rotate the mobile to landscape, the screen will need to get divided into 2x2 matrix(4 VideoViews).
----------------------------------------------
| | |
| | |
| VV1 | VV2 |
| | |
----------------------------------------------
| | |
| | |
| VV3 | VV4 |
| | |
----------------------------------------------
So, in this case, when changing from portrait to landscape, i want below points needs to be achieved.
Neeeds to change the layout dynamically without any interruption in the videos.(From 2 Videoview to 4 Videoview).
The Video should play flawlessly. Should not do pause and play during orientation.
If you ppl advise me to use "configChanges="orientation"", how can i handle the layout during orientation???
Thanks in advance