Android - Vertical layout only

后端 未结 8 1738
無奈伤痛
無奈伤痛 2021-01-31 07:26

How do I make sure my app is only for vertical layout?

I have tried android:screenOrientation=\"portrait\" but that doesn\'t seem to do the trick.

8条回答
  •  滥情空心
    2021-01-31 07:43

    you have to change into AndroidManifest.xml.

    for each activity you have to insert:

    android:configChanges = "orientation"
    
    android:screenOrientation = "portrait"
    

    for e.g.:

    
    

    This works for a single activity.. But there seems no application wide setting there.

提交回复
热议问题