android设立横屏

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

android设置横屏

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

 

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

android:configChanges="orientation"