当前位置: 代码迷 >> Android >> android设立横屏
  详细解决方案

android设立横屏

热度:17   发布时间:2016-05-01 15:03:10.0
android设置横屏

要在android内设置横屏,只需要 在manifest.xml配置的activity写一句 android:screenOrientation="landscape"

 

但是一定要注意,此时oncreate会被调用两次,第二次是因为要转方向,要避免,可以加上一句

android:configChanges="orientation"

  相关解决方案