How can I get one column in portrait mode and two columns in landscape mode with a ListView
or TableLayout
.
For example, in Portrait:
- Element 1
- Element 2
- Element 3
- Element 4
And in Landscape :
- Element1 Element2
- Element3 Element4
I thought to use ListView
with one column in portrait mode and TableLayout
with two columns in landscape mode, but before that, I want to know your suggestions.