Lock Android phone application to Portrait mode

前端 未结 4 1169
梦谈多话
梦谈多话 2020-12-13 01:48

Can someone tell me how to lock my application to a portrait mode? Is it a simple configuration in the manifest file?

4条回答
  •  情歌与酒
    2020-12-13 02:28

    Also, you may have to add the following to your activity element:

    android:configChanges="keyboardHidden"
    

    That way, the OS won't change the orientation when the user opens a sliding keyboard.

提交回复
热议问题