-1

How can I prevent the screen from rotating between landscape and portrait orientation ?

Young Andy
  • 21
  • 2
  • Question is similar as: http://stackoverflow.com/questions/582185/android-disable-landscape-mode – guido Nov 22 '14 at 14:51
  • In your manifest you can set your activities orientation with android:screenOrientation="portrait" or if you want landscape do that. But this is in the basic documentation... – zgc7009 Nov 22 '14 at 14:54

2 Answers2

1

Basically add this line in your manifest file

android:screenOrientation="portrait"
kawaijoe
  • 376
  • 2
  • 5
0

android:orientation="horizontal" or vertical if you want it upright

Neil Dick
  • 11
  • 2