Reputation: 71
How can I set just one activity or just one RelativeLayout from an android application to always have horizontal orientation?
I have tried to add android:screenOrientation = "horizontal" and android:screenOrientation = "landscape" to the RelativeLayout but it has no effect.
Thank you.
Upvotes: 0
Views: 142
Reputation: 243
RelativeLayout does not have orientations! Maybe you need to use LinearLayout
Upvotes: 2