Adina
Adina

Reputation: 71

Horizontal RelativeLayout android

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

Answers (1)

dtmnn
dtmnn

Reputation: 243

RelativeLayout does not have orientations! Maybe you need to use LinearLayout

Upvotes: 2

Related Questions