So I have 3 activities with fragments A, B, C and have portrait and landscape versions of those fragments.
Now I want to change my layout for big landscape modes, that there are 3 columns with one of those fragments each, so you don't have to navigate through pages but have an overview over the whole thing.
So that all 3 fragments fit, we need the portrait versions of those fragments. But because we are in landscape, the app loads the landscape versions.
So how can I "force" it to use that version without just copypasting it?
I know that aliasing layouts would be an option, but I thought there are maybe other (better?) possibilities...
setRequestedOrientation doesn't work, because the screen rotates :(
Maybe I missed something there?
Edit:
To clarify...
I still wanna keep the landscape version of the fragments for smaller landscape screens, like phones and smaller tablets.
I only wanna change to that other layout for big! landscape screens